Skip to content

Commit 27cd86f

Browse files
committed
remove codecov
1 parent 60f429c commit 27cd86f

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff 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

pytest.ini

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,4 @@ python_classes = Test*
55
python_functions = test_*
66

77
addopts =
8-
--verbose
9-
--cov=databunkerpro
10-
--cov-report=xml
11-
--cov-report=term-missing
12-
--no-cov-on-fail
8+
--verbose

0 commit comments

Comments
 (0)