Skip to content

Commit cc3a95e

Browse files
committed
Try enabling more Python 3 testing.
With corresponding fixes. - Fix unneeded decode in test_shed_upload. - Update to latest version of gxformat2 for Python 3 fixes (galaxyproject/gxformat2#1).
1 parent ceb1a48 commit cc3a95e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ env:
77
- TOX_ENV=py27-lint-readme
88
- TOX_ENV=py27-lint-docs
99
- TOX_ENV=py27-quick
10+
- TOX_ENV=py34-quick
1011
- TOX_ENV=py27
1112
- TOX_ENV=py34
1213
- TOX_ENV=py27-lint-docstrings

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jinja2
1111
glob2
1212
virtualenv
1313
lxml
14-
gxformat2>=0.1.1
14+
gxformat2>=0.2.0
1515
ephemeris>=0.2.0
1616
galaxy-lib>=17.9.8
1717
html5lib>=0.9999999,!=0.99999999,!=0.999999999,!=1.0b10,!=1.0b09

tests/test_shed_upload.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def test_upload_from_git(self):
138138
"git add .",
139139
"git commit -m 'initial commit'"
140140
]))
141-
rev = git.rev(None, "single_tool").decode("UTF-8")
141+
rev = git.rev(None, "single_tool")
142142
upload_command = [
143143
"shed_update", "--force_repository_creation",
144144
"git+single_tool/.git"

0 commit comments

Comments
 (0)