forked from ginkgobioworks/abdev-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
39 lines (32 loc) · 1017 Bytes
/
pytest.ini
File metadata and controls
39 lines (32 loc) · 1017 Bytes
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
36
37
38
[pytest]
# Pytest configuration for antibody developability benchmark tests
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Paths
testpaths = tests
# Output options
addopts =
-v
--tb=short
--strict-markers
--color=yes
# Custom markers for selective testing
markers =
tap_linear: Tests for TAP Linear baseline
tap_single_features: Tests for TAP Single Features baseline
aggrescan3d: Tests for Aggrescan3D baseline
antifold: Tests for AntiFold baseline
saprot_vh: Tests for Saprot_VH baseline
deepviscosity: Tests for DeepViscosity baseline
structure: Tests for directory/file structure
quality: Tests for data quality
slow: Tests that may take longer to run
# Warnings
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
# Coverage options (if pytest-cov is installed)
# Uncomment to enable coverage reporting
# addopts = --cov=model --cov-report=html --cov-report=term