Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.

Commit a48e9bb

Browse files
committed
Update
1 parent 0afaf37 commit a48e9bb

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
- uses: actions/upload-artifact@v2
5353
with:
54-
name: jupyterlite-xeus-python-dist
54+
name: dist
5555
path: dist
5656

5757
test_isolated:
@@ -68,14 +68,14 @@ jobs:
6868
architecture: 'x64'
6969
- uses: actions/download-artifact@v2
7070
with:
71-
name: jupyterlite-xeus-python-dist
71+
name: dist
7272
- name: Install and Test
7373
run: |
7474
set -eux
7575
# Remove NodeJS, twice to take care of system and locally installed node versions.
7676
sudo rm -rf $(which node)
7777
sudo rm -rf $(which node)
78-
pip install jupyterlite-xeus-python.tar.gz
78+
pip install dist/*.tar.gz
7979
pip install "jupyterlab==4"
8080
jupyter labextension list 2>&1 | grep -ie "@jupyterlite/xeus-python-kernel.*OK"
8181
@@ -92,7 +92,7 @@ jobs:
9292

9393
- uses: actions/download-artifact@v2
9494
with:
95-
name: jupyterlite-xeus-python-dist
95+
name: dist
9696

9797
- name: Install Conda environment with Micromamba
9898
uses: mamba-org/setup-micromamba@v1
@@ -107,7 +107,7 @@ jobs:
107107
python -c "from mamba.api import create"
108108
109109
- name: Install
110-
run: pip install jupyterlite-xeus-python.tar.gz
110+
run: pip install dist/*.tar.gz
111111

112112
- name: Run tests
113113
run: pytest -rP test_xeus_python_env.py
@@ -123,7 +123,7 @@ jobs:
123123

124124
- uses: actions/download-artifact@v2
125125
with:
126-
name: jupyterlite-xeus-python-dist
126+
name: dist
127127

128128
- name: Install Conda environment with Micromamba
129129
uses: mamba-org/setup-micromamba@v1
@@ -133,7 +133,7 @@ jobs:
133133
cache-environment: true
134134

135135
- name: Install
136-
run: pip install jupyterlite-xeus-python.tar.gz
136+
run: pip install dist/*.tar.gz
137137

138138
- name: Run tests
139139
run: pytest -rP test_xeus_python_env.py
@@ -149,7 +149,7 @@ jobs:
149149

150150
- uses: actions/download-artifact@v2
151151
with:
152-
name: jupyterlite-xeus-python-dist
152+
name: dist
153153

154154
- name: Install Conda environment with Micromamba
155155
uses: mamba-org/setup-micromamba@v1
@@ -159,7 +159,7 @@ jobs:
159159
cache-environment: true
160160

161161
- name: Install
162-
run: pip install jupyterlite-xeus-python.tar.gz
162+
run: pip install dist/*.tar.gz
163163

164164
- name: Run tests
165165
run: pytest -rP test_xeus_python_env.py
@@ -175,7 +175,7 @@ jobs:
175175

176176
- uses: actions/download-artifact@v2
177177
with:
178-
name: jupyterlite-xeus-python-dist
178+
name: dist
179179

180180
- name: Install Conda environment with Micromamba
181181
uses: mamba-org/setup-micromamba@v1
@@ -185,7 +185,7 @@ jobs:
185185
cache-environment: true
186186

187187
- name: Install
188-
run: pip install jupyterlite-xeus-python.tar.gz
188+
run: pip install dist/*.tar.gz
189189

190190
- name: Run tests
191191
run: pytest -rP test_xeus_python_env.py

0 commit comments

Comments
 (0)