-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
44 lines (41 loc) · 1.11 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
# 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.
# http://tox.readthedocs.io/en/latest/config.html
#
# To run tox faster, check out Detox
# (https://pypi.python.org/pypi/detox), which runs your tox runs in
# parallel. To use it, "pip install detox" and then run "detox" from
# this directory.
[tox]
envlist =
py{36}
codecov
[testenv]
sitepackages = True
deps =
pytest
coverage
pyvisa
pyvisa-sim
scipy
whitelist_externals = make
commands =
make tests_coverage
[testenv:codecov]
passenv = CODECOV_TOKEN
deps = codecov
whitelist_externals = make
skip_install = true
commands =
make report_coverage
codecov --file .coverage/coverage.xml --commit {env:CI_COMMIT_SHA} \
--branch {env:CI_COMMIT_BRANCH} --name Heptapod_{env:CI_JOB_ID}
[testenv:codecov-travis]
passenv = CI TRAVIS TRAVIS_*
deps = codecov
skip_install = true
commands =
make report_coverage
codecov --file .coverage/coverage.xml