@@ -34,36 +34,37 @@ jobs:
34
34
python-version : ["3.9"]
35
35
pytest_args : [tests]
36
36
extra-env : [""]
37
+ name-prefix : [tests]
37
38
include :
38
39
# Run stability tests on the lowest and highest versions of Python only
39
40
# These are temporarily redundant with the current global python-version
40
41
# - pytest_args: tests/stability
41
42
# python-version: "3.9"
42
43
# os: ubuntu-latest
43
- # - pytest_args: tests/stability
44
- # python-version: "3.9"
45
- # os: ubuntu-latest
46
- - pytest_args : tests/stability
47
- python-version : " 3.11"
48
- os : ubuntu-latest
44
+ # name-prefix: stability
49
45
- pytest_args : tests/stability
50
46
python-version : " 3.11"
51
47
os : ubuntu-latest
48
+ name-prefix : stability
52
49
# Run stability tests on Python Windows and MacOS (latest py39 only)
53
50
- pytest_args : tests/stability
54
51
python-version : " 3.9"
55
52
os : windows-latest
53
+ name-prefix : stability
56
54
- pytest_args : tests/stability
57
55
python-version : " 3.9"
58
56
os : macos-latest
57
+ name-prefix : stability
59
58
- pytest_args : tests/workflows/test_snowflake.py
60
59
python-version : " 3.9"
61
60
os : ubuntu-latest
61
+ name-prefix : snowflake
62
62
extra-env : ci/environment-snowflake.yml
63
63
- pytest_args : tests/tpch -m tpch_nondask
64
64
python-version : " 3.9"
65
65
os : ubuntu-latest
66
66
extra-env : ci/environment-tpch-nondask.yml
67
+ name-prefix : tpch-nondask
67
68
68
69
steps :
69
70
- name : Checkout
@@ -136,7 +137,7 @@ jobs:
136
137
SNOWFLAKE_WAREHOUSE : ${{ secrets.SNOWFLAKE_WAREHOUSE }}
137
138
SNOWFLAKE_ROLE : ${{ secrets.SNOWFLAKE_ROLE }}
138
139
COILED_RUNTIME_VERSION : ${{ matrix.runtime-version }}
139
- DB_NAME : ${{ matrix.os }}-py${{ matrix.python-version }}.db
140
+ DB_NAME : ${{ matrix.name-prefix }}-${{ matrix. os }}-py${{ matrix.python-version }}.db
140
141
CLUSTER_DUMP : always
141
142
run : |
142
143
pytest --benchmark -n 4 --dist loadscope ${{ env.PYTEST_MARKERS }} ${{ matrix.pytest_args }}
@@ -148,9 +149,9 @@ jobs:
148
149
uses : actions/upload-artifact@v3
149
150
if : always()
150
151
with :
151
- name : ${{ matrix.os }}-py${{ matrix.python-version }}
152
+ name : ${{ matrix.name-prefix }}-${{ matrix. os }}-py${{ matrix.python-version }}
152
153
path : |
153
- ${{ matrix.os }}-py${{ matrix.python-version }}.db
154
+ ${{ matrix.name-prefix }}-${{ matrix. os }}-py${{ matrix.python-version }}.db
154
155
cluster_kwargs.*.*
155
156
mamba_env_export.yml
156
157
0 commit comments