mixxorz / behave-django

Behave BDD integration for Django
https://pythonhosted.org/behave-django/
38 stars 5 forks source link

Support Python 3.5, refactor tox.ini #53

Closed bittner closed 8 years ago

bittner commented 8 years ago

Add Python 3.5 to test matrix

Currently, our tests don't cover Python 3.5. Django 1.9 officially supports Python 3.5, and we test Django 1.9 in tox.ini and .travis.yml, so we should test with Python 3.5 and supported Django versions too.

Note that in Travis CI you have to use python: 3.5 to specify the image you run the tests on. Otherwise python3.5 will not be available (yet). See this comment for more information.

.travis.yml has to be updated accordingly.

Refactor tox.ini

The definition of basepython = py26 ... is redundant. This is provided by tox by default, and can be omitted.

mixxorz commented 8 years ago

Closed by #56

Except for the basepython thing. I'm fine with removing basepython. My only (probably unfounded) concern is that it's more explicit this way.