File: tox.ini

package info (click to toggle)
monitoring-plugins-systemd 2.3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 556 kB
  • sloc: python: 1,157; sh: 863; makefile: 25
file content (31 lines) | stat: -rw-r--r-- 611 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
[tox]
envlist = py36, py37, py38, py39, flake8, docs

[testenv]
deps = nose
commands = nosetests --nocapture {posargs}

[testenv:py36]
basepython = python3.6

[testenv:py37]
basepython = python3.7

[testenv:py38]
basepython = python3.8

[testenv:py39]
basepython = python3.9

[testenv:flake8]
basepython = python3.8
deps =  flake8
commands = flake8 check_systemd.py test setup.py

[testenv:docs]
basepython = python3.8
deps =
    pgi # PGI - Pure Python GObject Introspection Bindings API compatible with PyGObject.
    sphinx
    sphinx_rtd_theme
commands = sphinx-build -q -b html doc/source {envtmpdir}/html