Skip to content

Commit

Permalink
Merge pull request #22 from bamler-lab/v0.3
Browse files Browse the repository at this point in the history
v0.3
  • Loading branch information
robamler authored Jan 28, 2023
2 parents 8b473f7 + bb0d998 commit 5adc4a0
Show file tree
Hide file tree
Showing 24 changed files with 1,756 additions and 2,084 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ jobs:
run: poetry run maturin develop --release --features pybindings

- name: pytest
run: poetry run pytest tests/python | tee pytest.out
shell: bash
run: |
poetry run pytest tests/python | tee pytest.out
exit ${PIPESTATUS[0]}
- name: Verify that pytest used correct python version (unix)
if: matrix.os != 'windows-latest'
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,10 @@ jobs:
run: poetry run maturin develop --release --features pybindings

- name: pytest
run: poetry run pytest tests/python | tee pytest.out
shell: bash
run: |
poetry run pytest tests/python | tee pytest.out
exit ${PIPESTATUS[0]}
- name: Verify that pytest used correct python version (unix)
if: matrix.os != 'windows-latest'
Expand Down
Loading

0 comments on commit 5adc4a0

Please sign in to comment.