Skip to content

Commit

Permalink
Fix tox dependencies versions for tests (#1257)
Browse files Browse the repository at this point in the history
Fix tox dependencies versions for tests
  • Loading branch information
insspb committed Dec 22, 2019
1 parent 7232252 commit 43c0ccf
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions tox.ini
Expand Up @@ -7,24 +7,27 @@ envlist =
py37
py38
pypy
minversion = 3.13.2
minversion = 3.14.2
requires =
# https://github.com/tox-dev/tox/issues/765
virtualenv >= 16.7.4
pip >= 19.2.3
virtualenv >= 16.7.9
pip >= 19.3.1

[testenv]
passenv =
LC_ALL
LANG
HOME
commands = pytest --cov=cookiecutter {posargs:tests}
commands =
pip install -e .
pytest --cov=cookiecutter {posargs:tests}
deps = -rtest_requirements.txt
skip_install = true

[testenv:lint]
commands =
python -m pre_commit run {posargs:--all}
deps = pre-commit>=1.17.0
deps = pre-commit>=1.20.0
skip_install = true
usedevelop = false

Expand Down

0 comments on commit 43c0ccf

Please sign in to comment.