Skip to content

Commit

Permalink
fix checks after repo reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
garymm committed Dec 6, 2024
1 parent 3365d12 commit 0f95354
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ jobs:
enable-cache: true
- name: pytest
run: uv run --extra test pytest --capture=no --verbose --cov --cov-report=xml --ignore-glob='jax_loop_utils/metric_writers/tf/*' --ignore-glob='jax_loop_utils/metric_writers/torch/*' jax_loop_utils/
working-directory: src
- name: pytest tensorflow
run: uv run --extra test --extra tensorflow pytest --capture=no --verbose --cov --cov-report=xml --cov-append jax_loop_utils/metric_writers/tf
working-directory: src
- name: pytest torch
run: uv run --extra test --extra torch pytest --capture=no --verbose --cov --cov-report=xml --cov-append jax_loop_utils/metric_writers/torch
working-directory: src
- name: Upload coverage reports to Codecov
if: always()
uses: codecov/codecov-action@v4
Expand All @@ -37,7 +40,7 @@ jobs:
with:
enable-cache: true
- name: ruff
run: uv run --with ruff ruff check .
run: uv run --with ruff ruff check src

# pyright:
# runs-on: ubuntu-22.04
Expand Down

0 comments on commit 0f95354

Please sign in to comment.