summaryrefslogtreecommitdiffstats
path: root/pytest.ini
blob: 1b0d19bb2079abfa39f6dc061413f6bccc417c4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[pytest]
norecursedirs =
    .*
    __pycache__
    cover
    docs
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
    *_test.py
    *_tests.py
addopts =
    --cov=.
    --cov-report=term
    --cov-report=html