[go: up one dir, main page]

File: tox.ini

package info (click to toggle)
linkchecker 10.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,116 kB
  • sloc: python: 13,131; makefile: 134; sh: 71; xml: 36; sql: 20; javascript: 19; php: 2
file content (46 lines) | stat: -rw-r--r-- 879 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
40
41
42
43
44
45
46
[tox]
envlist = py3{9,10,11,12,13}, minreqs

[base]
deps =
    cryptography
    pyftpdlib
    pyopenssl
    pytest-xdist
    pytest-cov
    geoip: GeoIP

[testenv]
usedevelop = true
deps =
    !minreqs: -rrequirements.txt
    minreqs: -rrequirements-min.txt
    {[base]deps}
commands =
    !minreqs: pytest {posargs:--cov=linkcheck}
    minreqs: pytest {posargs:--cov=linkcheck -c pytest-minreqs.ini}
passenv = CI
setenv =
    LC_ALL=en_US.utf-8

[testenv:flake8]
deps = flake8
skip_install = true
commands = flake8 {posargs}

[testenv:check-python-versions]
deps = check-python-versions
skip_install = true
commands = check-python-versions {posargs}

[testenv:pylint]
deps =
    pylint
    -rrequirements.txt
skip_install = true
commands = pylint {posargs} -E linkcheck

[testenv:yamllint]
deps = yamllint
skip_install = true
commands = yamllint {posargs} -s .github/workflows/