Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e5e9ee2

Browse filesBrowse files
fix: update workflows
1 parent afb4b31 commit e5e9ee2
Copy full SHA for e5e9ee2

File tree

2 files changed

+8
-35
lines changed
Filter options

2 files changed

+8
-35
lines changed

‎.circleci/config.yml

Copy file name to clipboardExpand all lines: .circleci/config.yml
-23Lines changed: 0 additions & 23 deletions
This file was deleted.

‎.github/workflows/ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+8-12Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,13 @@ jobs:
1414
python-version: '3.10'
1515
- name: Install dependencies
1616
run: pip install -r requirements.txt
17-
- name: Run ATS
18-
uses: codecov/codecov-ats@v0
19-
env:
20-
CODECOV_STATIC_TOKEN: ${{ secrets.CODECOV_STATIC_TOKEN }}
21-
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}
17+
2218
- name: Run tests and collect coverage
23-
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
19+
run: pytest --cov app --junitxml=reportme.xml
20+
2421
- name: Upload coverage to Codecov
25-
uses: codecov/codecov-action@v4-beta
26-
with:
27-
flags: smart-tests
28-
verbose: true
29-
env:
30-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
22+
run: |
23+
curl -Os https://cli.codecov.io/v0.4.6/linux/codecov
24+
chmod u+x codecov
25+
26+
./codecov -v upload-process -f reportme.xml -t ${{ secrets.CODECOV_TOKEN }} --report-type test_results

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.