-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
21 lines (21 loc) · 906 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[pytest]
minversion = 7.0
pythonpath =
snp_haplotyper
test_data/
test_data/autosomal_dominant_logic
test_data/autosomal_recessive_logic
test_data/x_linked_logic
tests/functional/
testpaths = tests
tests/functional
tests/unit
#addopts = -rsxX -l --tb=short --cov=sn_haplotyper --cov-report=html
markers =
autosomal_dominant_logic: marks tests for the logic used in the AD mode of inheritance
autosomal_recessive_logic: marks tests for the logic used in the AR mode of inheritance
x_linked_logic: marks tests for the logic used in the XL mode of inheritance
ref_unaffected: marks tests related to using an unaffected reference
ref_affected: marks tests related to using an affected reference
ref_child: marks tests related to when the reference is a child
ref_grandparent: marks tests related to when the reference is a grandparent