git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 6f4ef0a6783f46cb1a950d919f645d7cd72f61de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tox]
envlist = coverage
isolated_build = True

[testenv]
passenv =
    CI
commands = pytest --benchmark-disable

[testenv:coverage]
commands =
    coverage erase
    pytest --cov={envsitepackagesdir}/nio --cov-report term-missing --benchmark-disable
    coverage xml
    coverage report --show-missing
deps =
    .[dev]
    coverage
setenv =
    COVERAGE_FILE=.coverage