File: tox.ini

package info (click to toggle)
owslib 0.23.0-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,176 kB
  • sloc: xml: 137,886; python: 20,041; makefile: 167; sh: 11
file content (26 lines) | stat: -rw-r--r-- 536 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
[pytest]
addopts = -v -rxs -s --color=yes --tb=native --ignore=setup.py --doctest-modules --doctest-glob 'tests/**/*.txt' --cov-report term-missing --cov owslib
norecursedirs = .git docs examples etc cov* *.egg* pytest* .tox _broken

[flake8]
ignore=F401,E402
max-line-length=120
exclude =
    .git,
    __pycache__,
    docs/source/conf.py,
    build,
    dist
    examples,
    etc,

[tox]
skipsdist=True

[testenv]
recreate=False
commands=
    python setup.py develop
    py.test \
        --basetemp={envtmpdir} \
        {posargs}