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 046b238 commit 2af6975Copy full SHA for 2af6975
.github/workflows/test.yml
@@ -32,15 +32,19 @@ jobs:
32
- name: Setup environment
33
uses: ./.github/actions/setup-environment
34
35
- - name: Run ATS and Tests
36
- uses: ./.github/actions/run-ats
37
- timeout-minutes: 15
+ - name: Test with pytest
+ timeout-minutes: 5
+ run: |
38
+ uv run pytest \
39
+ -n auto \
40
+ --cov src \
41
+ -o junit_suite_name="${{github.job}}" \
42
+ tests/unit
43
+
44
+ - uses: ./.github/actions/report
45
with:
- default_tests: "tests/unit"
- codecov_static_token: ${{ secrets.CODECOV_STATIC_TOKEN }}
46
+ flag: unit-tests
47
codecov_token: ${{ secrets.CODECOV_TOKEN }}
- collect_args: "--timeout 15"
- codecov_flags: unit-tests
48
49
codemod-tests:
50
needs: access-check
0 commit comments