File: tox.ini

package info (click to toggle)
python-jsonrpc-base 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: python: 577; makefile: 8; sh: 5
file content (39 lines) | stat: -rw-r--r-- 610 bytes parent folder | download
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
[tox]
envlist =
    flake8,
    py37,
    py38,
    py39,
    py310,

[testenv]
setenv =
    PYTHONPATH = {toxinidir}:{toxinidir}/jsonrpc_base
commands =
    pytest --cov-report term-missing --cov=jsonrpc_base tests.py
deps =
    -r{toxinidir}/requirements-test.txt

[testenv:py37]
basepython = python3.7
deps =
    {[testenv]deps}

[testenv:py38]
basepython = python3.8
deps =
    {[testenv]deps}

[testenv:py39]
basepython = python3.9
deps =
    {[testenv]deps}

[testenv:py310]
basepython = python3.10
deps =
    {[testenv]deps}

[testenv:flake8]
basepython = python
commands = flake8 jsonrpc_base tests.py