Skip to content
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
10 changes: 10 additions & 0 deletions .github/workflows/python-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ jobs:
if: steps.core-version.outputs.core == 'true'
run: |
make docs-validate
- name: Recreate hatch test environment
shell: bash
run: |
hatch env remove hatch-test.py${{ matrix.python-version }} 2>/dev/null || true
hatch env create hatch-test.py${{ matrix.python-version }}
- name: Pytest Fast
if: steps.core-version.outputs.core != 'true'
run: |
Expand Down Expand Up @@ -151,6 +156,11 @@ jobs:
- name: gen OSCAL models
run: |
make gen-oscal
- name: Recreate hatch test environment
shell: bash
run: |
hatch env remove hatch-test.py${{ matrix.python-version }} 2>/dev/null || true
hatch env create hatch-test.py${{ matrix.python-version }}
- name: Run tests
run: |
make test
Expand Down
Loading