forked from IDSIA/sacred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
62 lines (54 loc) · 1.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# 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, py35, py36, py37, flake8, tensorflow-1, tensorflow-2
# py32 does not work because of the 'wrapt' dependency
# py33 is not supported by newer versions of numpy
# py34 is not supported by newer versions of pandas
[testenv]
deps =
-rdev-requirements.txt
commands =
pytest \
{posargs} # substitute with tox' positional arguments
[testenv:tensorflow-1]
basepython = python
deps =
-rdev-requirements.txt
tensorflow==1.12.2
commands =
pytest tests/test_stflow \
{posargs}
[testenv:tensorflow-2]
basepython = python
deps =
-rdev-requirements.txt
tensorflow==2.0.0-alpha0
commands =
pytest tests/test_stflow \
{posargs}
[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_*
basepython = python
deps =
-rdev-requirements.txt
pytest-cov
coveralls
commands =
pytest \
--cov sacred \
{posargs}
- coveralls