Skip to content

Commit ef4c8c6

Browse files
committed
Make Python 3.5 the default testing environment
1 parent 0befe45 commit ef4c8c6

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ CHANGES
66

77
- Updated test suite to work with Morepath 0.15.
88

9+
- Make Python 3.5 the default testing environment.
10+
911

1012
0.1 (2016-07-01)
1113
================

tox.ini

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@ deps = -e{toxinidir}[test]
66
commands = py.test -v {posargs}
77

88
[testenv:pep8]
9-
basepython = python2
9+
basepython = python3.5
1010
deps = flake8
11-
commands = flake8
11+
commands = flake8 morepath_sqlalchemy setup.py
1212

1313
[testenv:coverage]
14-
basepython = python2
14+
basepython = python3.5
1515
deps = {[testenv]deps}
1616
commands =
1717
coverage run --source morepath_sqlalchemy -m py.test {posargs}
1818
coverage report -m --fail-under=100
19+
20+
[pytest]
21+
testpaths = morepath_sqlalchemy

0 commit comments

Comments
 (0)