From: Eli Bendersky Date: Wed, 23 Sep 2020 13:21:12 +0000 (-0700) Subject: Set to run only on ubuntu because of readelf binary X-Git-Tag: v0.27~11 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b9f0e406670043da45d1fc65d64767ebba036b59;p=pyelftools.git Set to run only on ubuntu because of readelf binary Also fix mentions of Travis --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4ffdb9..0237da2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: python-version: [2.7, 3.6, 3.7, 3.8] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest] steps: diff --git a/test/run_all_unittests.py b/test/run_all_unittests.py index 0e00a4d..5f226dd 100755 --- a/test/run_all_unittests.py +++ b/test/run_all_unittests.py @@ -13,7 +13,7 @@ import os, sys import unittest # Make it possible to run this file from the root dir of pyelftools without -# installing pyelftools; useful for Travis testing, etc. +# installing pyelftools; useful for CI testing, etc. sys.path[0:0] = ['.'] diff --git a/test/run_examples_test.py b/test/run_examples_test.py index 349f13b..4a2843f 100755 --- a/test/run_examples_test.py +++ b/test/run_examples_test.py @@ -12,7 +12,7 @@ import logging from utils import run_exe, is_in_rootdir, dump_output_to_temp_files # Make it possible to run this file from the root dir of pyelftools without -# installing pyelftools; useful for Travis testing, etc. +# installing pyelftools; useful for CI testing, etc. sys.path[0:0] = ['.'] # Create a global logger object diff --git a/test/run_readelf_tests.py b/test/run_readelf_tests.py index 95cfbd2..67addf7 100755 --- a/test/run_readelf_tests.py +++ b/test/run_readelf_tests.py @@ -20,7 +20,7 @@ import time from utils import run_exe, is_in_rootdir, dump_output_to_temp_files # Make it possible to run this file from the root dir of pyelftools without -# installing pyelftools; useful for Travis testing, etc. +# installing pyelftools; useful for CI testing, etc. sys.path[0:0] = ['.'] # Create a global logger object