Skip to content

Commit da08c50

Browse files
Merge pull request #85 from easyscience/quick-fix
Fix CI workflow for testing unpinned PyPI packages
2 parents 1d7943c + b000dc3 commit da08c50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-package-pypi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ jobs:
3131
post-cleanup: false
3232

3333
- name: Download the pixi configuration file from the master branch
34-
shell: bash
3534
run: |
3635
curl -LO https://raw.githubusercontent.com/easyscience/diffraction-lib/master/pixi/prod/pixi.toml
3736
3837
- name: Download the tests from the master branch
3938
shell: bash
4039
run: |
4140
curl -LO https://github.com/easyscience/diffraction-lib/archive/refs/heads/master.zip
42-
unzip master.zip "diffraction-lib-master/tests/*" -d .
43-
mv diffraction-lib-master/tests ./tests
41+
unzip master.zip -d .
42+
mkdir -p tests
43+
cp -r diffraction-lib-master/tests/* tests/
4444
rm -rf master.zip diffraction-lib-master
4545
4646
- name: Create the environment and install dependencies

0 commit comments

Comments
 (0)