Skip to content

Commit

Permalink
remove py2 test and fix super call
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Sep 17, 2020
1 parent 880a4e7 commit 29f45b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
os: linux
python:
- "2.7"
python:
- "3.4"
- "3.5"
- "3.6"
Expand Down
3 changes: 2 additions & 1 deletion test/test_sys_checkout.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 29f45b0

Please sign in to comment.