Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ matrix:
env: TOXENV=ci36
- python: "3.7"
env: TOXENV=ci37
- python: "3.8"
env: TOXENV=ci38

cache:
- pip
Expand Down
11 changes: 10 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = ci27,ci36,ci37,cov-report
envlist = ci27,ci36,ci37,ci38,cov-report


[testenv]
Expand Down Expand Up @@ -33,6 +33,15 @@ commands =
pytest --doctest-modules --ignore-glob="*__py2.py" patterns/
pytest -s -vv --cov={envsitepackagesdir}/patterns --log-level=INFO tests/

[testenv:ci38]
basepython = python3.8
deps =
-r requirements-dev.txt
commands =
flake8 --exclude="*__py2.py" patterns/
pytest --doctest-modules --ignore-glob="*__py2.py" patterns/
pytest -s -vv --cov={envsitepackagesdir}/patterns --log-level=INFO tests/

[testenv:cov-report]
setenv =
COVERAGE_FILE = .coverage
Expand Down