File: tox.ini

package info (click to toggle)
python-bitcoinlib 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,356 kB
  • sloc: python: 8,212; makefile: 132; sh: 6
file content (28 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (2)
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
#-*-mode: ini; encoding: utf-8-*-

[tox] #-------------------------------------------------------------------

envlist = reset,py34,py35,py36,py37,py38,py39,pypy3,stats
skip_missing_interpreters = True

[testenv] #---------------------------------------------------------------

commands =
    coverage run --append --omit='tests/*,*/site-packages/*,*/distutils/*,*/lib_pypy/*' setup.py test -q

deps =
    coverage

setenv =
    PYTHONWARNINGS = all

[testenv:reset] #---------------------------------------------------------

commands =
    coverage erase

[testenv:stats] #---------------------------------------------------------

commands =
    coverage report
    coverage html