Skip to content

Commit 98eec6b

Browse files
committed
work on self-tests
1 parent 7c9026b commit 98eec6b

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

.github/workflows/win_test.yml

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,41 @@ jobs:
5353
#cd G2
5454
curl -L -O https://github.com/AdvancedPhotonSource/GSAS-II-buildtools/raw/main/install/gitstrap.py
5555
python gitstrap.py --nocheck --noshortcut --branch=main
56-
- name: GSAS-II test
56+
- name: find files
57+
shell: bash -el {0}
58+
run: |
59+
ls -l GSAS-II/GSASII-bin/win_64_p3.13_n2.2
60+
ls -l GSAS-II/tests2
61+
- name: GSAS-II single test
62+
if: always()
5763
shell: bash -el {0}
5864
run: |
59-
ls -R
6065
cd GSAS-II
6166
python tests/test_elm.py
62-
python -m pytest
6367
68+
- name: GSAS-II all tests
69+
if: always()
70+
shell: bash -el {0}
71+
run: |
72+
cd GSAS-II
73+
ls
74+
python -m pytest
75+
- name: try pyspg
76+
if: always()
77+
shell: bash -el {0}
78+
run: |
79+
cd GSAS-II/GSASII-bin/win_64_p3.13_n2.2
80+
python -c import pyspg
81+
82+
- name: try ldd
83+
if: always()
84+
shell: bash -el {0}
85+
run: |
86+
conda create -n ntldd m2w64-ntldd-git
87+
conda activate ntldd
88+
cd GSAS-II/GSASII-bin/win_64_p3.13_n2.2
89+
ls
90+
ntldd *.py
6491
6592
# #uses: conda-incubator/setup-miniconda@030178870c779d9e5e1b4e563269f3aa69b04081 # v3.0.3 using hash for security
6693
# with:

0 commit comments

Comments
 (0)