We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb183e3 commit d5616faCopy full SHA for d5616fa
.github/workflows/test.yml
@@ -11,6 +11,8 @@ jobs:
11
timeout-minutes: 20
12
strategy:
13
fail-fast: false
14
+ matrix:
15
+ group: [1, 2, 3]
16
17
steps:
18
- uses: actions/checkout@v4
@@ -25,4 +27,4 @@ jobs:
25
27
python -m pip install -e .[test]
26
28
- name: Test with pytest
29
run: |
- python -m pytest tests/
30
+ python -m pytest --splits 3 --group ${{ matrix.group }} tests/
pyproject.toml
@@ -60,7 +60,8 @@ Repository = "https://github.com/lucidrains/alphafold3-pytorch"
60
[project.optional-dependencies]
61
examples = []
62
test = [
63
- "pytest"
+ "pytest",
64
+ "pytest-split"
65
]
66
67
[build-system]
0 commit comments