Skip to content

Commit cd96edb

Browse files
fix: try the thig
1 parent 9c0fedf commit cd96edb

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

.github/workflows/ci.yml

+16-9
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,26 @@ jobs:
66
steps:
77
- name: Checkout
88
uses: actions/checkout@v4
9-
with:
10-
fetch-depth: 0
9+
- name: Checkout codecov-cli test branch
10+
uses: actions/checkout@v4
11+
with:
12+
repository: codecov/codecov-cli
13+
ref: 1c261cd6b9bbef57bba3595c8688c388ce69ac5d
14+
submodules: 'true'
15+
16+
- name: Run pip install .
17+
run: |
18+
pip install -r requirements.txt
19+
pip install .
20+
21+
- name: Checkout
22+
uses: actions/checkout@v4
1123
- name: Set up Python 3.10
1224
uses: actions/setup-python@v4
1325
with:
1426
python-version: '3.10'
1527
- name: Install dependencies
1628
run: pip install -r requirements.txt
1729
- name: Run tests and collect coverage
18-
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
19-
- name: Upload coverage to Codecov
20-
uses: codecov/codecov-action@v4
21-
with:
22-
verbose: true
23-
env:
24-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
30+
run: pytest --cov app
31+

0 commit comments

Comments
 (0)