File tree Expand file tree Collapse file tree 2 files changed +3
-14
lines changed
Expand file tree Collapse file tree 2 files changed +3
-14
lines changed Original file line number Diff line number Diff line change @@ -26,20 +26,13 @@ jobs:
2626 python -m pip install --upgrade pip
2727 pip install -e ".[dev]"
2828
29- - name : Run tests with coverage
29+ - name : Run tests
3030 env :
3131 DATABUNKER_API_URL : ${{ secrets.DATABUNKER_API_URL || 'https://pro.databunker.org' }}
3232 DATABUNKER_API_TOKEN : ${{ secrets.DATABUNKER_API_TOKEN }}
3333 DATABUNKER_TENANT_NAME : ${{ secrets.DATABUNKER_TENANT_NAME }}
3434 run : |
35- pytest --cov=databunkerpro --cov-report=xml tests/ -v
36-
37- - name : Upload coverage to Codecov
38- uses : codecov/codecov-action@v3
39- with :
40- files : ./coverage.xml
41- fail_ci_if_error : true
42- token : ${{ secrets.CODECOV_TOKEN }}
35+ pytest tests/ -v
4336
4437 lint :
4538 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -5,8 +5,4 @@ python_classes = Test*
55python_functions = test_*
66
77addopts =
8- --verbose
9- --cov =databunkerpro
10- --cov-report =xml
11- --cov-report =term-missing
12- --no-cov-on-fail
8+ --verbose
You can’t perform that action at this time.
0 commit comments