File tree 5 files changed +320
-14
lines changed
5 files changed +320
-14
lines changed Original file line number Diff line number Diff line change 1
- name : Tests
1
+ name : Tests I
2
2
3
3
on :
4
4
pull_request :
@@ -36,25 +36,25 @@ jobs:
36
36
- name : Run the tests
37
37
run : >
38
38
python3 django_repo/tests/runtests.py --settings snowflake_settings -v 2
39
+ admin_changelist
40
+ admin_custom_urls
41
+ admin_docs
42
+ admin_filters
43
+ admin_inlines
44
+ admin_ordering
45
+ admin_utils
46
+ admin_views
39
47
aggregation
40
48
aggregation_regress
41
49
annotations
50
+ auth_tests
42
51
backends
43
52
basic
44
53
bulk_create
45
- dates
46
- datetimes
47
- db_functions
48
- expressions
49
- expressions_window
50
- inspectdb
51
- introspection
52
- lookup
53
- migrations
54
- model_fields
55
- queries
56
- schema
57
- timezones
54
+ cache
55
+ check_framework
56
+ constraints
57
+ contenttypes_tests
58
58
env :
59
59
SNOWFLAKE_ACCOUNT : ${{ secrets.SNOWFLAKE_ACCOUNT }}
60
60
SNOWFLAKE_PASSWORD : ${{ secrets.SNOWFLAKE_PASSWORD }}
Original file line number Diff line number Diff line change
1
+ name : Tests II
2
+
3
+ on :
4
+ pull_request :
5
+ paths :
6
+ - ' **.py'
7
+ - ' !setup.py'
8
+ - ' .github/workflows/tests1.yml'
9
+
10
+ jobs :
11
+ django-tests :
12
+ runs-on : ubuntu-latest
13
+ name : Django Test Suite
14
+ steps :
15
+ - name : Checkout django-snowflake
16
+ uses : actions/checkout@v2
17
+ - name : Checkout Django
18
+ uses : actions/checkout@v2
19
+ with :
20
+ repository : ' timgraham/django'
21
+ ref : ' remove-query-quotes'
22
+ path : ' django_repo'
23
+ - name : Install system packages for Django's Python test dependencies
24
+ run : |
25
+ sudo apt-get update
26
+ sudo apt-get install libmemcached-dev
27
+ - name : Install Django and its Python test dependencies
28
+ run : |
29
+ cd django_repo/tests/
30
+ pip3 install -e ..
31
+ pip3 install -r requirements/py3.txt
32
+ - name : install the django-snowflake backend
33
+ run : pip3 install .
34
+ - name : Copy the test settings file
35
+ run : cp .github/workflows/snowflake_settings.py django_repo/tests/
36
+ - name : Run the tests
37
+ run : >
38
+ python3 django_repo/tests/runtests.py --settings snowflake_settings -v 2
39
+ custom_columns
40
+ custom_lookups
41
+ custom_managers
42
+ custom_methods
43
+ custom_pk
44
+ datatypes
45
+ dates
46
+ datetimes
47
+ db_functions
48
+ db_typecasts
49
+ db_utils
50
+ defer
51
+ defer_regress
52
+ delete
53
+ delete_regress
54
+ empty
55
+ expressions
56
+ expressions_case
57
+ expressions_window
58
+ extra_regress
59
+ env :
60
+ SNOWFLAKE_ACCOUNT : ${{ secrets.SNOWFLAKE_ACCOUNT }}
61
+ SNOWFLAKE_PASSWORD : ${{ secrets.SNOWFLAKE_PASSWORD }}
62
+ SNOWFLAKE_USER : ${{ secrets.SNOWFLAKE_USER }}
63
+ SNOWFLAKE_WAREHOUSE : ${{ secrets.SNOWFLAKE_WAREHOUSE }}
Original file line number Diff line number Diff line change
1
+ name : Tests III
2
+
3
+ on :
4
+ pull_request :
5
+ paths :
6
+ - ' **.py'
7
+ - ' !setup.py'
8
+ - ' .github/workflows/tests1.yml'
9
+
10
+ jobs :
11
+ django-tests :
12
+ runs-on : ubuntu-latest
13
+ name : Django Test Suite
14
+ steps :
15
+ - name : Checkout django-snowflake
16
+ uses : actions/checkout@v2
17
+ - name : Checkout Django
18
+ uses : actions/checkout@v2
19
+ with :
20
+ repository : ' timgraham/django'
21
+ ref : ' remove-query-quotes'
22
+ path : ' django_repo'
23
+ - name : Install system packages for Django's Python test dependencies
24
+ run : |
25
+ sudo apt-get update
26
+ sudo apt-get install libmemcached-dev
27
+ - name : Install Django and its Python test dependencies
28
+ run : |
29
+ cd django_repo/tests/
30
+ pip3 install -e ..
31
+ pip3 install -r requirements/py3.txt
32
+ - name : install the django-snowflake backend
33
+ run : pip3 install .
34
+ - name : Copy the test settings file
35
+ run : cp .github/workflows/snowflake_settings.py django_repo/tests/
36
+ - name : Run the tests
37
+ run : >
38
+ python3 django_repo/tests/runtests.py --settings snowflake_settings -v 2
39
+ field_defaults
40
+ field_subclassing
41
+ file_storage
42
+ file_uploads
43
+ filtered_relation
44
+ foreign_object
45
+ forms_tests
46
+ from_db_value
47
+ generic_inline_admin
48
+ generic_relations
49
+ generic_relations_regress
50
+ generic_views
51
+ get_earliest_or_latest
52
+ get_object_or_404
53
+ i18n
54
+ inline_formsets
55
+ inspectdb
56
+ introspection
57
+ invalid_models_tests
58
+ known_related_objects
59
+ lookup
60
+ m2m_and_m2o
61
+ m2m_intermediary
62
+ m2m_multiple
63
+ m2m_recursive
64
+ m2m_regress
65
+ m2m_signals
66
+ m2m_through
67
+ m2m_through_regress
68
+ m2o_recursive
69
+ managers_regress
70
+ many_to_many
71
+ many_to_one
72
+ many_to_one_null
73
+ max_lengths
74
+ migrate_signals
75
+ migrations
76
+ migration_test_data_persistence
77
+ modeladmin
78
+ env :
79
+ SNOWFLAKE_ACCOUNT : ${{ secrets.SNOWFLAKE_ACCOUNT }}
80
+ SNOWFLAKE_PASSWORD : ${{ secrets.SNOWFLAKE_PASSWORD }}
81
+ SNOWFLAKE_USER : ${{ secrets.SNOWFLAKE_USER }}
82
+ SNOWFLAKE_WAREHOUSE : ${{ secrets.SNOWFLAKE_WAREHOUSE }}
Original file line number Diff line number Diff line change
1
+ name : Tests IV
2
+
3
+ on :
4
+ pull_request :
5
+ paths :
6
+ - ' **.py'
7
+ - ' !setup.py'
8
+ - ' .github/workflows/tests1.yml'
9
+
10
+ jobs :
11
+ django-tests :
12
+ runs-on : ubuntu-latest
13
+ name : Django Test Suite
14
+ steps :
15
+ - name : Checkout django-snowflake
16
+ uses : actions/checkout@v2
17
+ - name : Checkout Django
18
+ uses : actions/checkout@v2
19
+ with :
20
+ repository : ' timgraham/django'
21
+ ref : ' remove-query-quotes'
22
+ path : ' django_repo'
23
+ - name : Install system packages for Django's Python test dependencies
24
+ run : |
25
+ sudo apt-get update
26
+ sudo apt-get install libmemcached-dev
27
+ - name : Install Django and its Python test dependencies
28
+ run : |
29
+ cd django_repo/tests/
30
+ pip3 install -e ..
31
+ pip3 install -r requirements/py3.txt
32
+ - name : install the django-snowflake backend
33
+ run : pip3 install .
34
+ - name : Copy the test settings file
35
+ run : cp .github/workflows/snowflake_settings.py django_repo/tests/
36
+ - name : Run the tests
37
+ run : >
38
+ python3 django_repo/tests/runtests.py --settings snowflake_settings -v 2
39
+ model_fields
40
+ model_forms
41
+ model_formsets
42
+ model_formsets_regress
43
+ mutually_referential
44
+ nested_foreign_keys
45
+ null_fk
46
+ null_fk_ordering
47
+ null_queries
48
+ one_to_one
49
+ ordering
50
+ order_with_respect_to
51
+ or_lookups
52
+ pagination
53
+ prefetch_related
54
+ properties
55
+ proxy_model_inheritance
56
+ proxy_models
57
+ queries
58
+ queryset_pickle
59
+ raw_query
60
+ reserved_names
61
+ reverse_lookup
62
+ save_delete_hooks
63
+ schema
64
+ select_for_update
65
+ select_related
66
+ select_related_onetoone
67
+ select_related_regress
68
+ syndication_tests
69
+ test_client
70
+ test_client_regress
71
+ timezones
72
+ transaction_hooks
73
+ transactions
74
+ unmanaged_models
75
+ update
76
+ update_only_fields
77
+ validation
78
+ view_tests
79
+ env :
80
+ SNOWFLAKE_ACCOUNT : ${{ secrets.SNOWFLAKE_ACCOUNT }}
81
+ SNOWFLAKE_PASSWORD : ${{ secrets.SNOWFLAKE_PASSWORD }}
82
+ SNOWFLAKE_USER : ${{ secrets.SNOWFLAKE_USER }}
83
+ SNOWFLAKE_WAREHOUSE : ${{ secrets.SNOWFLAKE_WAREHOUSE }}
You can’t perform that action at this time.
0 commit comments