File: pytest.python3.ini

package info (click to toggle)
augur 24.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,312 kB
  • sloc: python: 14,253; sh: 227; makefile: 35
file content (35 lines) | stat: -rw-r--r-- 764 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
27
28
29
30
31
32
33
34
35
[pytest]
# ignore biopython's deprecation warnings about alphabet that are outside of our control
filterwarnings =
    ignore::PendingDeprecationWarning:Bio.Alphabet
    ignore:Coverage disabled

addopts =
    # do not capture any output---necessary for interactive breakpoints
    -s

    # report any tests that are skipped, xfailed, or xpassed
    -rsxX

    # report local variables with every stack trace
    -l

    # output verbosity
    # show individual test names
    -vv

    # run any doctests found in .py modules
    --doctest-modules

    # calculate test coverage for the `augur` module
    --cov=augur

    # add html coverage report generation
    --cov-report=html

    # output short traceback
    --tb=short

testpaths =
    augur/
    tests/