Skip to content

Commit

Permalink
Simplify tox file
Browse files Browse the repository at this point in the history
  • Loading branch information
cemsbr committed Apr 26, 2020
1 parent 2166bb7 commit 6dc4e1f
Showing 1 changed file with 7 additions and 21 deletions.
28 changes: 7 additions & 21 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ skip_missing_interpreters = true
[testenv]
whitelist_externals = rm

[testenv:py{35,36,37}]
commands=
rm -rf ./yala.egg-info/
pip install -U pip
pip install -U .[all,dev]
python setup.py test

[testenv:py38]
; Code checks and linters are run in the latest Python version only.
parallel_show_output = true
Expand Down Expand Up @@ -42,24 +49,3 @@ commands=
coveralls
codecov
python-codacy-coverage -r coverage.xml

[testenv:py37]
commands=
rm -rf ./yala.egg-info/
pip install -U pip
pip install -U .[all,dev]
python setup.py test

[testenv:py36]
commands=
rm -rf ./yala.egg-info/
pip install -U pip
pip install -U .[all,dev]
python setup.py test

[testenv:py35]
commands=
rm -rf ./yala.egg-info/
pip install -U pip
pip install -U .[all,dev]
python setup.py test

0 comments on commit 6dc4e1f

Please sign in to comment.