forked from cardosofelipe/fast-next-template
- Deleted outdated backend test cases (`test_auth.py`, `test_rate_limiting.py`, `test_users.py`) to clean up deprecated test structure. - These tests are now redundant with newer async test implementations and improved coverage.
9 lines
272 B
INI
9 lines
272 B
INI
[pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
addopts = --disable-warnings -n auto
|
|
markers =
|
|
sqlite: marks tests that should run on SQLite (mocked).
|
|
postgres: marks tests that require a real PostgreSQL database.
|
|
asyncio_default_fixture_loop_scope = function
|