45
45
ALL_CHANGED_FILES : ${{ steps.get-changed-files.outputs.all_changed_files }}
46
46
run : ruff format $ALL_CHANGED_FILES
47
47
48
- unit_tests_ubuntu_utc :
49
- name : Unit Testing (Ubuntu)
48
+ unit_tests :
49
+ name : Unit Tests
50
50
needs : lint_stylecheck
51
51
runs-on : ubuntu-latest
52
52
strategy :
75
75
- name : Run Pytest suite
76
76
run : pytest python/tests
77
77
78
- unit_tests_ubuntu_no_opt :
79
- name : Unit Testing (Ubuntu) (No Optional Dependencies)
78
+ unit_tests_no_opt :
79
+ name : Unit Tests (No Optional Dependencies)
80
80
needs : lint_stylecheck
81
81
runs-on : ubuntu-latest
82
82
99
99
- name : Run Pytest suite
100
100
run : pytest python/tests
101
101
102
- unit_tests_ubuntu_pandas :
103
- name : Unit Testing (Ubuntu) (Pandas 1.x)
102
+ unit_tests_pandas1 :
103
+ name : Unit Tests (Pandas 1.x)
104
104
needs : lint_stylecheck
105
105
runs-on : ubuntu-latest
106
106
@@ -126,8 +126,8 @@ jobs:
126
126
- name : Run Pytest suite
127
127
run : pytest python/tests
128
128
129
- unit_tests_ubuntu_local :
130
- name : Unit Testing (Ubuntu) (Local TZ)
129
+ unit_tests_local_tz :
130
+ name : Unit Tests (Local TZ)
131
131
needs : lint_stylecheck
132
132
runs-on : ubuntu-latest
133
133
@@ -153,8 +153,8 @@ jobs:
153
153
- name : Run Pytest suite
154
154
run : pytest python/tests
155
155
156
- unit_tests_ubuntu_typechecked :
157
- name : Typechecked Unit Testing (Ubuntu )
156
+ unit_tests_typechecked :
157
+ name : Unit Tests (Typechecked )
158
158
needs : lint_stylecheck
159
159
runs-on : ubuntu-latest
160
160
@@ -177,8 +177,8 @@ jobs:
177
177
run : pytest python/tests
178
178
continue-on-error : true
179
179
180
- unit_tests_windows_utc :
181
- name : Unit Testing (Windows)
180
+ unit_tests_windows :
181
+ name : Unit Tests (Windows)
182
182
needs : lint_stylecheck
183
183
runs-on : windows-latest
184
184
@@ -204,8 +204,8 @@ jobs:
204
204
- name : Run Pytest suite
205
205
run : pytest python/tests
206
206
207
- unit_tests_windows_local :
208
- name : Unit Testing (Windows) (Local TZ)
207
+ unit_tests_windows_local_tz :
208
+ name : Unit Tests (Windows) (Local TZ)
209
209
needs : lint_stylecheck
210
210
runs-on : windows-latest
211
211
0 commit comments