forked from jpvantassel/swprocess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
50 lines (44 loc) · 812 Bytes
/
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
# Configuration for tox, test running env.
[tox]
envlist = clean,py37,py38,report
[testenv:clean]
deps = coverage
changedir = {toxinidir}/test
skip_install = true
commands = coverage erase
[testenv:py37]
deps =
-e{toxinidir}/../sigpropy/code
numpy
scipy
obspy
coverage
pandas
xlrd
depends =
clean
usedevelop = True
changedir = {toxinidir}/test
commands =
coverage run --omit=*/sigpropy/*,*/testtools.py,*/test_*.py -m unittest
[testenv:py38]
deps =
-e{toxinidir}/../sigpropy/code
numpy
scipy
obspy
pandas
xlrd
usedevelop = True
changedir = {toxinidir}/test
commands =
python -m unittest
[testenv:report]
deps = coverage
depends =
py37
changedir = {toxinidir}/test
skip_install = true
commands =
coverage report
coverage html