Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI (quality_standards_demo) #797

Merged
merged 6 commits into from
Aug 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,21 @@ jobs:
run: |
python -m pip install -e .

- name: install cookiecutter
if: matrix.py == '3.8'
run: |
pip install cookiecutter

- name: create installable quality standard from repo
if: matrix.py == '3.8'
run: |
cookiecutter --no-input https://github.com/BAMWeldx/quality-standard-template

- name: install quality standard
if: matrix.py == '3.8'
run: |
pip install -e ./quality_standard_demo

- name: run pytest
run: |
pytest -n 2 --runslow --junit-xml pytest.xml
Expand All @@ -85,20 +100,6 @@ jobs:
run: |
pytest --cov-append ./weldx/tests/asdf_tests/quality_standards_check.py

- name: install cookiecutter
if: matrix.py == '3.8'
run: |
pip install cookiecutter

- name: create installable quality standard from repo
if: matrix.py == '3.8'
run: |
cookiecutter --no-input https://github.com/BAMWeldx/quality-standard-template

- name: install quality standard
if: matrix.py == '3.8'
run: |
pip install -e ./quality_standard_demo

- name: test installable quality standard from template repository
if: matrix.py == '3.8'
Expand Down