Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
parkpow
GitHub Repository: parkpow/deep-license-plate-recognition
Path: blob/master/webhooks/middleware/pytest.ini
1083 views
1
[pytest]
2
# Pytest configuration for Front-Rear middleware tests
3
4
# Test discovery patterns
5
python_files = *_test.py
6
python_classes = Test*
7
python_functions = test_*
8
9
# Output options
10
addopts =
11
-v
12
--strict-markers
13
--tb=short
14
--color=yes
15
16
# Markers
17
markers =
18
slow: marks tests as slow (deselect with '-m "not slow"')
19
integration: marks tests as integration tests
20
unit: marks tests as unit tests
21
22
# Logging
23
log_cli = false
24
log_cli_level = INFO
25
26
# Coverage options (if using pytest-cov)
27
# addopts = --cov=protocols --cov-report=html --cov-report=term
28
29
# Test paths
30
testpaths = protocols
31
32
# Ignore directories
33
norecursedirs = .git .tox dist build *.egg __pycache__
34
35