Skip to content

Commit

Permalink
Remove external codecov ci steps
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincarrogan committed Jun 24, 2024
1 parent e17e70c commit 5445d2b
Showing 1 changed file with 2 additions and 21 deletions.
23 changes: 2 additions & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,6 @@ jobs:
name: Install Dependencies
command: pipenv sync --dev

- run:
name: Install code coverage
command: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
- save_cache:
paths:
- ./venv
Expand All @@ -55,11 +49,9 @@ jobs:
- run:
name: Run tests
command: pipenv run pytest --cov=. --cov-report xml --cov-config=.coveragerc

- store_test_results:
path: test-results
- run:
name: Upload code coverage
command: ./codecov

tests_postgres13:
docker:
Expand Down Expand Up @@ -97,12 +89,6 @@ jobs:
name: Install Dependencies
command: pipenv sync --dev

- run:
name: Install code coverage
command: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
- save_cache:
paths:
- ./venv
Expand All @@ -114,12 +100,7 @@ jobs:

- run:
name: Run tests on Postgres 13
command: pipenv run pytest --cov=. --cov-report xml --cov-config=.coveragerc
- store_test_results:
path: test-results
- run:
name: Upload code coverage
command: ./codecov
command: pipenv run pytest

linting:
docker:
Expand Down

0 comments on commit 5445d2b

Please sign in to comment.