fix: Switching to local codecov script (#14170)

* Switching to local codecov script

* Adding license / update instructions

* Fixing FE build

* Fixing FE codecov test
This commit is contained in:
Craig Rueda
2021-04-16 09:26:50 -07:00
committed by GitHub
parent a3e302374b
commit 8db7be16da
5 changed files with 1910 additions and 13 deletions

View File

@@ -70,7 +70,7 @@ jobs:
- name: Upload code coverage
if: steps.check.outcome == 'failure'
run: |
bash <(curl -s https://codecov.io/bash) -c -F python -F mysql
bash .github/workflows/codecov.sh -c -F python -F mysql
test-postgres:
if: github.event.pull_request.draft == false
@@ -134,7 +134,7 @@ jobs:
- name: Upload code coverage
if: steps.check.outcome == 'failure'
run: |
bash <(curl -s https://codecov.io/bash) -c -F python -F postgres
bash .github/workflows/codecov.sh -c -F python -F postgres
test-sqlite:
if: github.event.pull_request.draft == false
@@ -190,4 +190,4 @@ jobs:
- name: Upload code coverage
if: steps.check.outcome == 'failure'
run: |
bash <(curl -s https://codecov.io/bash) -c -F python -F sqlite
bash .github/workflows/codecov.sh -c -F python -F sqlite