summaryrefslogtreecommitdiffstats
path: root/pytest.ini
blob: fec074f904588a4a27941e35fa9d36fcd33b1a52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[pytest]
norecursedirs =
    .*
    __pycache__
    cover
    docs
    # utils has it's own config
    utils
python_files =
    # TODO(rhcarvalho): rename test files to follow a single pattern. "test*.py"
    # is Python unittest's default, while pytest discovers both "test_*.py" and
    # "*_test.py" by default.
    test_*.py
    *_tests.py
addopts =
    --cov=.
    --cov-report=term
    --cov-report=html