forked from jpvantassel/hvsrpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
43 lines (38 loc) · 781 Bytes
/
tox.ini
File metadata and controls
43 lines (38 loc) · 781 Bytes
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
# Configuration for tox, test running env.
[tox]
; envlist = clean,py37,py38,report
envlist = clean,py37,report
[testenv:clean]
deps =
coverage
changedir = {toxinidir}/test
skip_install = true
commands = coverage erase
[testenv:py37]
deps =
-eD:\CurrentResearch\sigpropy\
-rrequirements.txt
depends =
clean
usedevelop = True
changedir = {toxinidir}/test
commands =
coverage run --omit=*/sigpropy/*,*/testtools.py -m unittest
; [testenv:py38]
; deps =
; -eD:\CurrentResearch\sigpropy\
; -rrequirements.txt
; 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