Skip to content

Commit 12620d3

Browse files
fix: repeat
1 parent cf53471 commit 12620d3

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/ci.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on: [push, pull_request]
33
jobs:
44
run:
55
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
repeat: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
69
steps:
710
- name: Checkout
811
uses: actions/checkout@v4
@@ -14,17 +17,11 @@ jobs:
1417
python-version: '3.10'
1518
- name: Install dependencies
1619
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_TOKEN }}
2220
- name: Run tests and collect coverage
2321
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
2422
- name: Upload coverage to Codecov
2523
uses: codecov/codecov-action@v1
2624
with:
27-
flags: smart-tests
2825
verbose: true
2926
env:
3027
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)