2013-10-05 14:12:31 -07:00
|
|
|
[tox]
|
2023-06-09 12:54:41 -07:00
|
|
|
envlist = py38, py39, py310, flake8
|
2013-10-05 14:12:31 -07:00
|
|
|
|
|
|
|
[testenv]
|
2018-05-06 14:28:46 -07:00
|
|
|
setenv =
|
|
|
|
MOCK_REDIS = 1
|
2013-10-05 14:12:31 -07:00
|
|
|
commands =
|
2018-05-06 12:45:38 -07:00
|
|
|
pip install -r requirements.txt
|
2018-05-06 14:28:46 -07:00
|
|
|
pip install -r dev-requirements.txt
|
2022-05-17 11:54:51 -07:00
|
|
|
pytest --cov=snappass --cov-report=term-missing tests.py
|
2017-04-22 22:36:41 -07:00
|
|
|
|
2017-04-23 10:08:49 -07:00
|
|
|
[testenv:flake8]
|
2017-04-22 22:36:41 -07:00
|
|
|
commands =
|
2022-05-17 11:41:01 -07:00
|
|
|
pip install -r dev-requirements.txt
|
|
|
|
flake8
|