From b9f0e406670043da45d1fc65d64767ebba036b59 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Wed, 23 Sep 2020 06:21:12 -0700 Subject: [PATCH] Set to run only on ubuntu because of readelf binary Also fix mentions of Travis --- .github/workflows/ci.yml | 2 +- test/run_all_unittests.py | 2 +- test/run_examples_test.py | 2 +- test/run_readelf_tests.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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 -- 2.30.2