forked from IDSIA/sacred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
43 lines (37 loc) · 1.02 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py27, py34, py35, flake8
# py32 does not work because of the 'wrapt' dependency
# py33 is not supported by newer versions of numpy
[testenv]
deps =
-rdev-requirements.txt
commands =
py.test \
{posargs} # substitute with tox' positional arguments
[testenv:flake8]
basepython = python
deps =
-rrequirements.txt
flake8
pep8-naming
mccabe
# flake8-docstrings # deactivated because it currently fails with:
# AttributeError: 'module' object has no attribute 'PEP257Checker'
commands =
flake8 --max-complexity 10 sacred
[testenv:coverage]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
basepython = python
deps =
-rdev-requirements.txt
pytest-cov
coveralls
commands =
py.test \
--cov sacred \
{posargs}
coveralls