51
51
52
52
- uses : actions/upload-artifact@v2
53
53
with :
54
- name : jupyterlite-xeus-python- dist
54
+ name : dist
55
55
path : dist
56
56
57
57
test_isolated :
@@ -68,14 +68,14 @@ jobs:
68
68
architecture : ' x64'
69
69
- uses : actions/download-artifact@v2
70
70
with :
71
- name : jupyterlite-xeus-python- dist
71
+ name : dist
72
72
- name : Install and Test
73
73
run : |
74
74
set -eux
75
75
# Remove NodeJS, twice to take care of system and locally installed node versions.
76
76
sudo rm -rf $(which node)
77
77
sudo rm -rf $(which node)
78
- pip install jupyterlite-xeus-python .tar.gz
78
+ pip install dist/* .tar.gz
79
79
pip install "jupyterlab==4"
80
80
jupyter labextension list 2>&1 | grep -ie "@jupyterlite/xeus-python-kernel.*OK"
81
81
92
92
93
93
- uses : actions/download-artifact@v2
94
94
with :
95
- name : jupyterlite-xeus-python- dist
95
+ name : dist
96
96
97
97
- name : Install Conda environment with Micromamba
98
98
uses : mamba-org/setup-micromamba@v1
@@ -107,7 +107,7 @@ jobs:
107
107
python -c "from mamba.api import create"
108
108
109
109
- name : Install
110
- run : pip install jupyterlite-xeus-python .tar.gz
110
+ run : pip install dist/* .tar.gz
111
111
112
112
- name : Run tests
113
113
run : pytest -rP test_xeus_python_env.py
@@ -123,7 +123,7 @@ jobs:
123
123
124
124
- uses : actions/download-artifact@v2
125
125
with :
126
- name : jupyterlite-xeus-python- dist
126
+ name : dist
127
127
128
128
- name : Install Conda environment with Micromamba
129
129
uses : mamba-org/setup-micromamba@v1
@@ -133,7 +133,7 @@ jobs:
133
133
cache-environment : true
134
134
135
135
- name : Install
136
- run : pip install jupyterlite-xeus-python .tar.gz
136
+ run : pip install dist/* .tar.gz
137
137
138
138
- name : Run tests
139
139
run : pytest -rP test_xeus_python_env.py
@@ -149,7 +149,7 @@ jobs:
149
149
150
150
- uses : actions/download-artifact@v2
151
151
with :
152
- name : jupyterlite-xeus-python- dist
152
+ name : dist
153
153
154
154
- name : Install Conda environment with Micromamba
155
155
uses : mamba-org/setup-micromamba@v1
@@ -159,7 +159,7 @@ jobs:
159
159
cache-environment : true
160
160
161
161
- name : Install
162
- run : pip install jupyterlite-xeus-python .tar.gz
162
+ run : pip install dist/* .tar.gz
163
163
164
164
- name : Run tests
165
165
run : pytest -rP test_xeus_python_env.py
@@ -175,7 +175,7 @@ jobs:
175
175
176
176
- uses : actions/download-artifact@v2
177
177
with :
178
- name : jupyterlite-xeus-python- dist
178
+ name : dist
179
179
180
180
- name : Install Conda environment with Micromamba
181
181
uses : mamba-org/setup-micromamba@v1
@@ -185,7 +185,7 @@ jobs:
185
185
cache-environment : true
186
186
187
187
- name : Install
188
- run : pip install jupyterlite-xeus-python .tar.gz
188
+ run : pip install dist/* .tar.gz
189
189
190
190
- name : Run tests
191
191
run : pytest -rP test_xeus_python_env.py
0 commit comments