Skip to content

Commit 2af6975

Browse files
committed
remove ats
1 parent 046b238 commit 2af6975

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,19 @@ jobs:
3232
- name: Setup environment
3333
uses: ./.github/actions/setup-environment
3434

35-
- name: Run ATS and Tests
36-
uses: ./.github/actions/run-ats
37-
timeout-minutes: 15
35+
- name: Test with pytest
36+
timeout-minutes: 5
37+
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
3845
with:
39-
default_tests: "tests/unit"
40-
codecov_static_token: ${{ secrets.CODECOV_STATIC_TOKEN }}
46+
flag: unit-tests
4147
codecov_token: ${{ secrets.CODECOV_TOKEN }}
42-
collect_args: "--timeout 15"
43-
codecov_flags: unit-tests
4448

4549
codemod-tests:
4650
needs: access-check

0 commit comments

Comments
 (0)