File: tox.ini

package info (click to toggle)
daps 3.3.2%2Bcleaned1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,540 kB
  • sloc: xml: 9,773; sh: 3,059; python: 1,322; lisp: 380; makefile: 239
file content (20 lines) | stat: -rw-r--r-- 347 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
[tox]
envlist =
    flake8
    py{36,37,38,39}

[testenv]
commands = pytest {posargs:}
description = Run test suite for {basepython}
deps =
    pytest
    pytest-cov
usedevelop = True
setenv =
    PIP_DISABLE_PIP_VERSION_CHECK = 1

[testenv:flake8]
basepython = python3
description = Check code style
deps = flake8
commands = flake8 {posargs:bin}