mq-quiz / pyproject.toml
Pamela Fox
Changes for test explorer
886a656
raw
history blame
425 Bytes
[tool.ruff]
select = ["E", "F", "I", "UP"]
target-version = "py310"
line-length = 120
[tool.black]
target-version = ['py310']
line-length = 120
exclude = '''
/(
| \.venv
| migrations
)/
'''
[tool.pytest.ini_options]
addopts = "-ra --cov=src --cov-report=term-missing:skip-covered --junitxml=pytest.xml"
pythonpath = ["src"]
python_files = ["tests.py"]
env_override_existing_values = 1
env_files = [".env", ".env.test"]