Skip to content

Commit

Permalink
Remove ATS-related configuration (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem authored Feb 20, 2025
1 parent e4be32d commit 63bd5f2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 64 deletions.
50 changes: 0 additions & 50 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,56 +112,6 @@ jobs:
name: ${{matrix.python-version}}junit.xml
path: ${{matrix.python-version}}junit.xml

static-analysis:
runs-on: ubuntu-latest
needs: codecov-startup
if: ${{ !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 2
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install CLI
run: |
pip install codecov-cli
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 2
- name: Static Analysis
run: |
codecovcli static-analysis --token ${{ secrets.STATIC_TOKEN }}
label-analysis:
runs-on: ubuntu-latest
needs: static-analysis
if: ${{ !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies for Dogfooding
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python -m pip install -e .
pip install -r tests/requirements.txt
- name: Label Analysis
run: |
BASE_SHA=$(git merge-base HEAD^ origin/main)
echo $BASE_SHA
codecovcli label-analysis --token ${{ secrets.STATIC_TOKEN }} --base-sha=$BASE_SHA --max-wait-time=120
- name: Upload smart-labels
run: |
codecovcli --codecov-yml-path=codecov.yml do-upload --plugin pycoverage --plugin compress-pycoverage --fail-on-error -t ${{ secrets.CODECOV_TOKEN }} --flag smart-labels
process-test-results:
if: ${{ always() }}
needs: build-test-upload
Expand Down
14 changes: 0 additions & 14 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,2 @@
ignore:
- tests/**

beta_groups:
- "labels"

flag_management:
individual_flags:
- name: "smart-labels"
carryforward: true
carryforward_mode: "labels"

cli:
plugins:
pycoverage:
report_type: "json"

0 comments on commit 63bd5f2

Please sign in to comment.