aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 4 insertions, 8 deletions
diff --git a/tox.ini b/tox.ini
index 5e6d5e4..b5ff705 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py37,py36,py35,docs,flake8,black
+envlist = py38,py37,py36,py35,docs,flake8,black
skip_missing_interpreters = True
[testenv]
@@ -9,8 +9,7 @@ commands =
py.test --pyargs ihatemoney.tests.tests
deps =
- -rdev-requirements.txt
- -rrequirements.txt
+ -e.[dev]
# To be sure we are importing ihatemoney pkg from pip-installed version
changedir = /tmp
@@ -23,14 +22,10 @@ changedir = {toxinidir}
[testenv:black]
commands = black --check --target-version=py34 .
-deps =
- -rdev-requirements.txt
changedir = {toxinidir}
[testenv:flake8]
commands = flake8 ihatemoney
-deps =
- -rdev-requirements.txt
changedir = {toxinidir}
[flake8]
@@ -43,5 +38,6 @@ extend-ignore =
[travis]
python =
3.5: py35
- 3.6: py36, docs, black, flake8
+ 3.6: py36
3.7: py37
+ 3.8: py38, docs, black, flake8