18 lines
491 B
INI
18 lines
491 B
INI
[tool:pytest]
|
|
minversion = 6.0
|
|
addopts = -ra -q --strict-markers --ignore=docs --ignore=setup.py --ignore=.git --ignore=.tox --ignore=dist --ignore=build --ignore=*.egg --tb=short
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
# 환경변수 설정
|
|
env =
|
|
TESTING=1
|
|
|
|
# 마커 정의
|
|
markers =
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
integration: marks tests as integration tests
|
|
unit: marks tests as unit tests
|