Skip to content

Commit 9bc8251

Browse files
authored
Update workflow to diagnose GSAS-II issues
Replaced the Bilbao self-test with GSAS-II diagnostics in the workflow.
1 parent cb97002 commit 9bc8251

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/bilbao-test.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,19 @@ jobs:
2323
with:
2424
manifest-path: pixi/pixi.toml
2525

26-
- name: run Bilbao self-test
26+
- name: diagnose GSAS-II issues
2727
run: |
2828
cd pixi
29-
pixi run python -m pytest ../tests/run_bilbao.py
29+
pixi run python -c import GSASII
30+
pixi run python -c "import GSASII.pyspg; print(GSASII.pyspg.__file__)"
31+
pixi run python -c "from GSASII import GSASIIspc as G2spc; G2spc.SpcGroup('R 3 C r')"
32+
33+
# - name: run Bilbao self-test
34+
# run: |
35+
# cd pixi
36+
# pixi run python -m pytest ../tests/run_bilbao.py
3037

31-
- name: run Bilbao self-test
32-
run: |
33-
cd tests
34-
pixi run --manifest-path ../pixi/pixi.toml python -m pytest run_bilbao.py
38+
# - name: run Bilbao self-test
39+
# run: |
40+
# cd tests
41+
# pixi run --manifest-path ../pixi/pixi.toml python -m pytest run_bilbao.py

0 commit comments

Comments
 (0)