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 7f7794d commit 48ebfcdCopy full SHA for 48ebfcd
.github/workflows/parallel.yml
@@ -54,10 +54,10 @@ jobs:
54
runs-on: ubuntu-latest
55
needs: collect
56
57
- strategy:
58
- matrix:
59
- test_dir: ["tests", "tests/dir1", "tests/dir2", "tests/dir3"]
60
- # test_dir: "${{ needs.collect.outputs.TEST_MATRIX }}"
+ # strategy:
+ # matrix:
+ # test_dir: ["tests", "tests/dir1", "tests/dir2", "tests/dir3"]
+ # test_dir: "${{ needs.collect.outputs.TEST_MATRIX }}"
61
62
steps:
63
- uses: actions/checkout@v4
@@ -72,5 +72,7 @@ jobs:
72
uv sync --locked; echo
73
uv tree
74
75
- - name: Run test
76
- run: uv run -- pytest '${{ matrix.test_dir }}'
+ # - name: Run test
+ # run: uv run -- pytest '${{ matrix.test_dir }}'
77
+
78
+ - run: echo "TEST_MATRIX is '${{ needs.collect.outputs.TEST_MATRIX }}'"
0 commit comments