mirror of
https://github.com/wassname/libcryptomarket.git
synced 2026-08-20 12:30:29 +08:00
27 lines
506 B
INI
27 lines
506 B
INI
[tox]
|
|
envlist = py35, flake8
|
|
|
|
[travis]
|
|
python =
|
|
3.5: py35
|
|
|
|
[testenv:flake8]
|
|
basepython=python
|
|
deps=flake8
|
|
commands=flake8 libcryptomarket
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}
|
|
deps =
|
|
-r{toxinidir}/requirements_dev.txt
|
|
commands =
|
|
pip install -U pip
|
|
py.test --basetemp={envtmpdir}
|
|
|
|
|
|
; If you want to make tox run the tests with the same versions, create a
|
|
; requirements.txt with the pinned versions and uncomment the following lines:
|
|
; deps =
|
|
; -r{toxinidir}/requirements.txt
|