summaryrefslogtreecommitdiff
path: root/tox.ini
blob: b6af5ea9c342aa9ea7dcc0a8e16bed8252595de0 (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tox]
envlist = py{36,37,38,39,310}
skip_missing_interpreters = true

[testenv:pylint]
deps =
   # We do not use the latest pylint version in CI tests as we want to choose when
   # we fix the warnings
   git+https://github.com/pycqa/pylint@master
   pre-commit~=2.13
  -r requirements_test_min.txt
commands = pre-commit run pylint --all-files

[testenv]
deps =
  -r requirements_test_min.txt
  -r requirements_test_brain.txt
  coverage<5

setenv =
    COVERAGE_FILE = {toxinidir}/.coverage.{envname}

commands =
    ; --pyargs is needed so the directory astroid doesn't shadow the tox
    ; installed astroid package
    ; This is important for tests' test data which create files
    ; inside the package
    python -Wi {envsitepackagesdir}/coverage run -m pytest --pyargs {posargs:tests}

[testenv:formatting]
basepython = python3
deps =
    pytest
    git+https://github.com/pycqa/pylint@master
    pre-commit~=2.13
commands =
    pre-commit run --all-files

[testenv:coveralls]
setenv =
    COVERAGE_FILE = {toxinidir}/.coverage
passenv =
    *
deps =
    coverage<5
    coveralls
skip_install = true
commands =
    python {envsitepackagesdir}/coverage combine --append
    python {envsitepackagesdir}/coverage report --rcfile={toxinidir}/.coveragerc -m
    - coveralls --rcfile={toxinidir}/.coveragerc
changedir = {toxinidir}

[testenv:coverage-erase]
setenv =
    COVERAGE_FILE = {toxinidir}/.coverage
deps =
    coverage<5
skip_install = true
commands =
    python {envsitepackagesdir}/coverage erase
changedir = {toxinidir}

[testenv:docs]
skipsdist = True
usedevelop = True
changedir = doc/
deps =
    -r doc/requirements.txt
commands =
    sphinx-build -b html . build