File: tox.ini

package info (click to toggle)
jsonpath-ng 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 568 kB
  • sloc: python: 5,042; makefile: 43
file content (49 lines) | stat: -rw-r--r-- 778 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
46
47
48
49
[tox]
min_version = 4.3.5

envlist =
    coverage-erase
    py{3.14, 3.13, 3.12, 3.11, 3.10}
    coverage-report

skip_missing_interpreters = True
isolated_build = True


[testenv]
package = wheel
wheel_build_env = build_wheel

depends =
    py{3.14, 3.13, 3.12, 3.11, 3.10}: coverage-erase
deps =
    coverage[toml]
    hypothesis
    pytest
    pytest-randomly
commands =
    coverage run -m pytest


[testenv:coverage-erase]
no_package = true
skip_install = true
deps =
    coverage[toml]
commands =
    coverage erase


[testenv:coverage-report]
depends =
    py{3.14, 3.13, 3.12, 3.11, 3.10}
no_package = true
skip_install = true
deps =
    coverage[toml]
commands_pre =
    - coverage combine
commands =
    coverage report
command_post =
    coverage html --fail-under=0