Skip to content
This repository was archived by the owner on Jun 12, 2021. It is now read-only.

Commit b8ce25b

Browse files
committed
travis tox
1 parent e3eb535 commit b8ce25b

2 files changed

Lines changed: 20 additions & 2 deletions

File tree

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ addons:
1313
-
1414

1515
install:
16-
- pip install pytest
1716
- pip install codecov
18-
17+
- pip install tox
18+
- pip install tox-travis
1919
script:
2020
- codecov --version
21+
- tox
2122

2223
after_success:
2324
- codecov

tox.ini

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[tox]
2+
envlist =
3+
py36
4+
py37
5+
pypy3
6+
7+
[testenv]
8+
deps = -r requirements-dev.txt
9+
whitelist_externals =
10+
tox
11+
commands =
12+
python --version
13+
pytest --version
14+
tox --version
15+
pip --version
16+
pip freeze
17+
pytest --cov={envsitepackagesdir}/oidcendpooint -vvv -rs {posargs:tests/}

0 commit comments

Comments
 (0)