-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMakefile
21 lines (20 loc) · 828 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
test:
pytest tests/test_database.py -s -x;
pytest tests/test_integration_fastapi.py -s -x;
pytest tests/test_model_1_to_1.py -s -x;
pytest tests/test_model_advanced.py -s -x;
pytest tests/test_model_connections.py -s -x;
pytest tests/test_model_counting.py -s -x;
pytest tests/test_model_deletions.py -s -x;
pytest tests/test_model_filtering_operators.py -s -x;
pytest tests/test_model_insertions.py -s -x;
pytest tests/test_model_limit_offset.py -s -x;
pytest tests/test_model_many_to_many.py -s -x;
pytest tests/test_models.py -s -x;
pytest tests/test_model_updates.py -s -x;
pytest tests/test_query_caching.py -s -x;
pytest tests/test_querying.py -s -x;
pytest tests/test_query_no_caching.py -s -x;
pytest tests/test_multiple_databases.py -s -x;
test-migrations:
python tests/migrations/test_migrations.py