File: tox.ini

package info (click to toggle)
python-nudatus 0.0.5-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: python: 295; makefile: 50; sh: 12
file content (16 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tox]
envlist = py35, py39, lint

[testenv]
commands = py.test --cov-report term-missing --cov=nudatus {posargs:tests/}
deps =
    pytest
    pytest-cov
    coveralls
    py{35,39}: mock

[testenv:lint]
commands =
    pep8 setup.py nudatus.py tests/
deps =
    pep8