File: tox.ini

package info (click to toggle)
python-netdisco 2.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 516 kB
  • sloc: python: 1,550; xml: 247; sh: 10; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (3)
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
[tox]
envlist = py34, py35, py36, py37, lint, typing
skip_missing_interpreters = True

[testenv]
setenv =
    PYTHONPATH = {toxinidir}:{toxinidir}/netdisco
deps =
    -r{toxinidir}/requirements.txt
    pytest
commands =
  py.test

[testenv:lint]
deps =
    flake8
    pylint
commands =
     flake8 netdisco tests setup.py example_service.py
     pylint netdisco tests

[testenv:typing]
deps =
    mypy==0.650
commands =
    mypy netdisco tests setup.py example_service.py