File tree 1 file changed +16
-9
lines changed
1 file changed +16
-9
lines changed Original file line number Diff line number Diff line change 6
6
steps:
7
7
- name: Checkout
8
8
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
11
23
- name: Set up Python 3.10
12
24
uses: actions/setup-python@v4
13
25
with:
14
26
python-version: '3.10'
15
27
- name: Install dependencies
16
28
run: pip install -r requirements.txt
17
29
- 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
+
You can’t perform that action at this time.
0 commit comments