File: tox.ini

package info (click to toggle)
python-openqa-client 4.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: python: 689; sh: 23; makefile: 3
file content (39 lines) | stat: -rw-r--r-- 785 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
29
30
31
32
33
34
35
36
37
38
39
[tox]
envlist = py36,py38,py39,py310,py311,py312,py313,ci
skip_missing_interpreters = true
isolated_build = true

[gh-actions]
python =
    3.6: py36
    3.8: py38
    3.9: py39
    3.10: py310
    3.11: py311
    3.12: py312
    3.13: py313, ci

[testenv]
deps =
    -r{toxinidir}/install.requires
    -r{toxinidir}/tests.requires

commands =
    coverage run -m pytest {posargs}

[testenv:ci]
deps =
    -r{toxinidir}/ci.requires

commands =
    coverage combine
    coverage report
    coverage xml
    diff-cover coverage.xml --fail-under=90 --compare-branch=origin/main
    diff-quality --violations=pylint --fail-under=90 --compare-branch=origin/main
    black src/ tests/ --check --exclude const.py
    mypy src/openqa_client

[testenv:venv]
passenv = *
commands = {posargs} []