Skip to content

Commit

Permalink
Make Python 3.5 the default testing environment
Browse files Browse the repository at this point in the history
  • Loading branch information
henri-hulski committed Jul 26, 2016
1 parent 16a506c commit 5b6bd1d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,7 @@ CHANGES
0.2 (unreleased)
================

- Nothing changed yet.
- Make Python 3.5 the default testing environment.


0.1 (2016-07-01)
Expand Down
9 changes: 6 additions & 3 deletions tox.ini
Expand Up @@ -6,13 +6,16 @@ deps = -e{toxinidir}[test]
commands = py.test -v {posargs}

[testenv:pep8]
basepython = python2
basepython = python3.5
deps = flake8
commands = flake8
commands = flake8 morepath_reactredux setup.py

[testenv:coverage]
basepython = python3
basepython = python3.5
deps = {[testenv]deps}
commands =
coverage run --source morepath_reactredux -m py.test {posargs}
coverage report -m

[pytest]
testpaths = morepath_reactredux

0 comments on commit 5b6bd1d

Please sign in to comment.