-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
46 lines (41 loc) · 807 Bytes
/
tox.ini
File metadata and controls
46 lines (41 loc) · 807 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
44
45
46
[tox]
envlist =
clean,
py{37,38}-{nocover,cover},
report
[testenv]
setenv =
PYTHONUNBUFFERED=yes
passenv = *
deps =
pytest
pytest-asyncio
pytest-mock
grpcio-testing
cover: pytest-cov
teamcity-messages
commands =
python setup.py clean --all build_ext --force --inplace
nocover: {posargs:pytest --ignore=src}
cover: {posargs:pytest --cov --cov-report=term-missing}
usedevelop =
nocover: false
cover: true
[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase
[testenv:report]
deps = coverage
skip_install = true
commands =
coverage report
coverage html
[coverage:run]
branch = True
source = galts_trade_api
omit = src/galts_trade_api/transport/protos/*
[coverage:paths]
source =
src
.tox/*/site-packages