Skip to content

Commit e45b1b4

Browse files
committed
run all test apps on CI
1 parent 087000e commit e45b1b4

File tree

2 files changed

+244
-3
lines changed

2 files changed

+244
-3
lines changed

.github/workflows/runtests.py

Lines changed: 87 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,37 @@
44
import sys
55

66
test_apps = [
7+
"admin_changelist",
8+
"admin_checks",
9+
"admin_custom_urls",
10+
"admin_docs",
711
"admin_filters",
12+
"admin_inlines",
13+
"admin_ordering",
14+
"admin_scripts",
15+
"admin_utils",
16+
"admin_views",
17+
"admin_widgets",
818
"aggregation",
919
"aggregation_regress",
1020
"annotations",
11-
"auth_tests.test_models.UserManagerTestCase",
21+
"apps",
22+
"async",
23+
"auth_tests",
1224
"backends",
1325
"basic",
1426
"bulk_create",
27+
"cache",
28+
"check_framework",
29+
"constraints",
30+
"contenttypes_tests",
31+
"context_processors",
32+
"custom_columns",
33+
"custom_lookups",
34+
"custom_managers",
35+
"custom_migration_operations",
1536
"custom_pk",
37+
"datatypes",
1638
"dates",
1739
"datetimes",
1840
"db_functions",
@@ -22,13 +44,32 @@
2244
"delete",
2345
"delete_regress",
2446
"empty",
47+
"empty_models",
2548
"expressions",
2649
"expressions_case",
50+
"field_defaults",
51+
"file_storage",
52+
"file_uploads",
53+
"fixtures",
54+
"fixtures_model_package",
55+
"fixtures_regress",
56+
"flatpages_tests",
2757
"force_insert_update",
58+
"foreign_object",
59+
"forms_tests",
2860
"from_db_value",
61+
"generic_inline_admin",
2962
"generic_relations",
3063
"generic_relations_regress",
64+
"generic_views",
65+
"get_earliest_or_latest",
66+
"get_object_or_404",
67+
"get_or_create",
68+
"i18n",
69+
"indexes",
70+
"inline_formsets",
3171
"introspection",
72+
"invalid_models_tests",
3273
"known_related_objects",
3374
"lookup",
3475
"m2m_and_m2o",
@@ -40,32 +81,77 @@
4081
"m2m_through",
4182
"m2m_through_regress",
4283
"m2o_recursive",
84+
"managers_regress",
4385
"many_to_many",
4486
"many_to_one",
4587
"many_to_one_null",
88+
"max_lengths",
89+
"messages_tests",
90+
"migrate_signals",
91+
"migration_test_data_persistence",
4692
"migrations",
4793
"model_fields",
4894
"model_fields_",
4995
"model_forms",
5096
"model_formsets",
97+
"model_formsets_regress",
98+
"model_indexes",
99+
"model_inheritance",
51100
"model_inheritance_regress",
101+
"model_options",
102+
"model_package",
103+
"model_regress",
104+
"model_utils",
105+
"modeladmin",
106+
"multiple_database",
52107
"mutually_referential",
53108
"nested_foreign_keys",
54109
"null_fk",
55110
"null_fk_ordering",
56111
"null_queries",
57112
"one_to_one",
58113
"or_lookups",
114+
"order_with_respect_to",
59115
"ordering",
116+
"pagination",
117+
"prefetch_related",
118+
"proxy_model_inheritance",
119+
"proxy_models",
60120
"queries",
61121
"queries_",
122+
"queryset_pickle",
123+
"redirects_tests",
124+
"reserved_names",
125+
"reverse_lookup",
126+
"save_delete_hooks",
62127
"schema",
128+
"select_for_update",
63129
"select_related",
64130
"select_related_onetoone",
65131
"select_related_regress",
132+
"serializers",
133+
"servers",
66134
"sessions_tests",
135+
"shortcuts",
136+
"signals",
137+
"sitemaps_tests",
138+
"sites_framework",
139+
"sites_tests",
140+
"string_lookup",
141+
"swappable_models",
142+
"syndication_tests",
143+
"test_client",
144+
"test_client_regress",
145+
"test_runner",
146+
"test_utils",
67147
"timezones",
148+
"transactions",
149+
"unmanaged_models",
68150
"update",
151+
"update_only_fields",
152+
"user_commands",
153+
"validation",
154+
"view_tests",
69155
"xor_lookups",
70156
]
71157
runtests = pathlib.Path(__file__).parent.resolve() / "runtests.py"

0 commit comments

Comments
 (0)