You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/run-unittests-py310-py312.yml
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
name: "[Py3.9-3.11] - All Unit Tests"
1
+
name: "[Py3.10-3.12] - All Unit Tests"
2
2
3
3
on:
4
4
workflow_dispatch:
@@ -33,15 +33,14 @@ jobs:
33
33
strategy:
34
34
fail-fast: false
35
35
matrix:
36
-
python-version: ["3.9", "3.10", "3.11"]
36
+
python-version: ["3.10", "3.11", "3.12"]
37
37
name: ["unitary", "slow_tests"]
38
38
include:
39
39
- name: "unitary"
40
40
test-path: "tests/unitary"
41
41
# `model` tests running in "slow_tests",
42
42
# `feature_store` tests has its own test suite
43
-
# `forecast` tests not supported in python 3.9,3.10 (automlx dependency). Tests are running in python3.8 test env, see run-unittests-py38-cov-report.yml
44
-
# 'pii' tests run only with py3.8, 'datapane' library conflicts with pandas>2.2.0, which used in py3.9/3.10 setup
43
+
# `forecast` tests not run in this suite
45
44
# 'hpo' tests hangs if run together with all unitary tests. Tests running in separate command before running all unitary
0 commit comments