Skip to content

Commit

Permalink
Adding windows tests back. Drat
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed May 23, 2024
1 parent 837fb8e commit 325a8fc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/wintests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: ARMI Windows tests

on:
push:
paths-ignore:
- 'doc/**'
pull_request:
paths-ignore:
- 'doc/**'

jobs:
build:

runs-on: windows-2022

steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Upgrade PIP
run: python -m pip install --upgrade pip
- name: Run Unit Tests on Windows
run: |
pip install -e .[memprof,mpi,test]
pytest -n 4 armi
- name: Find Test Crumbs
run: python .github/workflows/find_test_crumbs.py

0 comments on commit 325a8fc

Please sign in to comment.