Windows Test IDAES-PSE Main #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Test IDAES-PSE Main | |
on: [workflow_dispatch] | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: "Clone/Install IDAES-PSE" | |
shell: cmd | |
run: | | |
git clone https://github.com/idaes/idaes-pse.git | |
cd idaes-pse | |
git checkout main | |
pip install -r requirements-dev.txt | |
idaes get-extensions --nochecksum --url https://github.com/IDAES/idaes-ext/releases/download/test-release/ --extra petsc | |
- name: "Test IDAES-PSE" | |
shell: cmd | |
run: | | |
cd idaes-pse\idaes | |
pytest -m "not integration" --ignore=dmf --ignore=commands |