Skip to content

Commit

Permalink
[REVERTME] cargo build before pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
ss2165 committed May 22, 2024
1 parent 1cd9598 commit b26748e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
run: poetry run ruff check

- name: Run tests
run: poetry run pytest
run: cargo build && poetry run pytest

# Ensure that the serialization schema is up to date
serialization-schema:
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
run: poetry install

- name: Run python tests with coverage instrumentation
run: poetry run pytest --cov=./ --cov-report=xml
run: cargo build && poetry run pytest --cov=./ --cov-report=xml

- name: Upload python coverage to codecov.io
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit b26748e

Please sign in to comment.