Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: remove ATS #909

Merged
merged 5 commits into from
Mar 19, 2025
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,20 @@ jobs:
- name: Setup environment
uses: ./.github/actions/setup-environment

- name: Run ATS and Tests
uses: ./.github/actions/run-ats
timeout-minutes: 15
- name: Test with pytest
timeout-minutes: 5
run: |
uv run pytest \
-n auto \
--cov src \
--timeout 15 \
-o junit_suite_name="${{github.job}}" \
tests/unit

- uses: ./.github/actions/report
with:
default_tests: "tests/unit"
codecov_static_token: ${{ secrets.CODECOV_STATIC_TOKEN }}
flag: unit-tests
codecov_token: ${{ secrets.CODECOV_TOKEN }}
collect_args: "--timeout 15"
codecov_flags: unit-tests

codemod-tests:
needs: access-check
Expand Down
Loading