Skip to content

Commit 3d7fbc8

Browse files
committed
more work on 3.11 self-tests
1 parent 89a94b6 commit 3d7fbc8

File tree

2 files changed

+10
-27
lines changed

2 files changed

+10
-27
lines changed

.github/workflows/win-gitstrap-selftest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: GSAS-II self-tests on Windows via gitstrap
22

33
on:
44
# Runs on pushes targeting the default branch
5-
push:
6-
branches-ignore:
7-
- master
5+
# push:
6+
# branches-ignore:
7+
# - master
88
# branches: ['main']
9-
pull_request:
10-
branches: ['main']
9+
# pull_request:
10+
# branches: ['main']
1111

1212
workflow_dispatch: # Allows running this workflow manually
1313

.github/workflows/win_test.yml

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,19 @@ on:
55
push:
66
branches-ignore:
77
- master
8-
- main
9-
# branches: ['develop']
8+
# branches: ['main']
109
# pull_request:
1110
# branches: ['main']
1211

1312
workflow_dispatch: # Allows running this workflow manually
1413

15-
16-
# Default to bash
17-
#defaults:
18-
# run:
19-
# shell: bash
20-
2114
jobs:
22-
test-G2:
15+
test-GSAS-II:
2316
strategy:
2417
fail-fast: false
2518
matrix:
2619
# python-version: ["3.11", "3.12", "3.13"]
27-
python-version: ["3.13"]
20+
python-version: ["3.11"]
2821
runs-on: 'windows-latest'
2922
steps:
3023
- uses: conda-incubator/setup-miniconda@v3
@@ -42,7 +35,7 @@ jobs:
4235
elif [ "${{ matrix.python-version }}" == "3.11" ]; then
4336
npver=1.26
4437
fi
45-
conda install python-gil python=${{ matrix.python-version }} numpy=${npver} scipy requests pytest git gitpython -c conda-forge --override-channels --quiet
38+
conda install python-gil python=${{ matrix.python-version }} numpy=${npver} scipy requests pytest git gitpython pycifrw -c conda-forge --override-channels --quiet
4639
#conda install --quiet numpy=${npver} requests pytest briantoby::gsas2pkg -c conda-forge
4740
conda info
4841
conda list
@@ -66,7 +59,7 @@ jobs:
6659
run: |
6760
cd GSAS-II
6861
python tests/test_elm.py
69-
# python tests/test_spg.py
62+
python tests/test_spg.py
7063
7164
# - name: GSAS-II all tests
7265
# if: always()
@@ -95,13 +88,3 @@ jobs:
9588
ls
9689
ntldd *.pyd
9790
python -c "import pyspg"
98-
99-
# #uses: conda-incubator/setup-miniconda@030178870c779d9e5e1b4e563269f3aa69b04081 # v3.0.3 using hash for security
100-
# with:
101-
# #activate-environment: build
102-
# miniforge-version: latest
103-
# auto-activate-base: true
104-
# #python-version: ${{ matrix.python-version }}
105-
# #channels: conda-forge
106-
107-
# - name: config python

0 commit comments

Comments
 (0)