Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci-test-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
docker run \
-v ${{ github.workspace }}:/opt/openfold3 \
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:test-${{ inputs.cuda_base_image_tag }}-${{ github.sha }} \
pytest openfold3/tests -vvv
pytest openfold3/tests -vvv -n auto --cov=openfold3 --cov-report=xml
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could be baked into pyproject.toml but I like it more opt-in and explicit this way (at least for now)


stop-aws-runner:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ test = [
[project.optional-dependencies]
dev = [
"pytest",
"pytest-xdist",
"pytest-cov",
"ruff",

# used for documentation
Expand Down
Loading