forked from isofit/isofit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
15 lines (15 loc) · 709 Bytes
/
pytest.ini
File metadata and controls
15 lines (15 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[pytest]
addopts = --strict-markers
testpaths = isofit/test
python_files = test_*
python_functions = test_*
log_file = logs/pytest_logs.txt
log_format = %(asctime)s %(levelname)s %(message)s
log_date_format = %Y-%m-%d %H:%M:%S
filterwarnings = ignore::DeprecationWarning
console_output_style = progress
markers =
unmarked: Any test without a marker is quietly assigned the unmarked marker. Unmarked tests should typically have a short runtime, and be useful for immediate feedback.
slow: Tests with a long runtime that are less useful for immediate feedback, but are likely more comprehensive.
examples: Run tests exercising example datasets.
hypertrace: Run tests exercising the Hypertrace workflow.