From 05be94a811786719c01662bad52ae809ed2667f1 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 14 Apr 2021 15:30:36 +0200 Subject: Try to resolve apt install issues on travis. --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1ea34724a..4bb37d837 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,5 @@ os: linux -dist: trusty language: python -# 'sudo' is enabled automatically by the 'apt' addon below. -#sudo: false addons: apt: -- cgit v1.2.1 From 17670781083e3ccfedb1af4adcec614d4599eef9 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 14 Apr 2021 15:36:42 +0200 Subject: Fix embed test in Py2.6. --- runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index 0294bfef3..a29bfb806 100755 --- a/runtests.py +++ b/runtests.py @@ -1799,7 +1799,7 @@ class EmbedTest(unittest.TestCase): cython = os.path.abspath(os.path.join('..', '..', cython)) try: - subprocess.check_output([ + subprocess.check_call([ "make", "PYTHON='%s'" % sys.executable, "CYTHON='%s'" % cython, -- cgit v1.2.1