We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0befe45 commit ef4c8c6Copy full SHA for ef4c8c6
CHANGES.rst
@@ -6,6 +6,8 @@ CHANGES
6
7
- Updated test suite to work with Morepath 0.15.
8
9
+- Make Python 3.5 the default testing environment.
10
+
11
12
0.1 (2016-07-01)
13
================
tox.ini
@@ -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_sqlalchemy setup.py
[testenv:coverage]
14
15
deps = {[testenv]deps}
16
commands =
17
coverage run --source morepath_sqlalchemy -m py.test {posargs}
18
coverage report -m --fail-under=100
19
20
+[pytest]
21
+testpaths = morepath_sqlalchemy
0 commit comments