File: tox.ini

package info (click to toggle)
python-jsonrpc-websocket 3.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 140 kB
  • sloc: python: 425; makefile: 8; sh: 5
file content (45 lines) | stat: -rw-r--r-- 720 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
40
41
42
43
44
45
[tox]
envlist =
    py39,
    py310,
    py311,
    py312,
    py313,
    flake8,

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

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

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

[testenv:py311]
basepython = python3.11
deps =
    {[testenv]deps}

[testenv:py312]
basepython = python3.12
deps =
    {[testenv]deps}

[testenv:py313]
basepython = python3.13
deps =
    {[testenv]deps}

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