From 29f45b086d24c8ff35630b6854b00f4fc55623a6 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Thu, 17 Sep 2020 12:43:56 -0600 Subject: [PATCH] remove py2 test and fix super call --- .travis.yml | 3 +-- test/test_sys_checkout.py | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1990cb9604..d9b24c584d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: python os: linux -python: - - "2.7" +python: - "3.4" - "3.5" - "3.6" diff --git a/test/test_sys_checkout.py b/test/test_sys_checkout.py index 007f5e4897..ff9d5024df 100644 --- a/test/test_sys_checkout.py +++ b/test/test_sys_checkout.py @@ -1591,7 +1591,8 @@ def setUp(self): """ # Run the basic setup - super(TestSubrepoCheckout, self).setUp() + #super(TestSubrepoCheckout, self).setUp() + super().setUp() # create test repo # We need to do this here (rather than have a static repo) because # git submodules do not allow for variables in .gitmodules files