We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1b69d4 commit 05721dcCopy full SHA for 05721dc
1 file changed
.github/workflows/tests.yaml
@@ -63,10 +63,15 @@ jobs:
63
uv pip install jupyter nbconvert nbformat ipykernel pytest pytest-cov pytest-timeout codecov
64
python -m ipykernel install --user --name "python3"
65
66
+ - name: Install system dependencies
67
+ run: |
68
+ sudo apt-get update
69
+ sudo apt-get install -y pandoc
70
+
71
- name: Run Tests
72
run: |
73
source .venv/bin/activate
- pytest -s -v --cov=./ --cov-report=xml --cov=aurora tests
74
+ pytest -s -v --cov=./ --cov-report=xml --cov=aurora -n auto tests
75
76
- name: "Upload coverage reports to Codecov"
77
uses: codecov/codecov-action@v4
0 commit comments