Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix codecov #4144

Merged
merged 3 commits into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linux_integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: install coverage
run: pip install "coverage[toml]"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion .github/workflows/linux_unit_tests_with_latest_deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: install coverage
run: pip install "coverage[toml]"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Release Notes
**Future Releases**
* Enhancements
* Fixes
* Fixed usage of codecov after uploader deprecation :pr:`4144`
* Changes
* Documentation Changes
* Testing Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ matplotlib-inline==0.1.6
networkx==3.1
nlp-primitives==2.10.0
numpy==1.23.5
packaging==23.0
packaging==23.1
pandas==1.5.3
plotly==5.14.1
pmdarima==2.0.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ catboost==1.1.1
category-encoders==2.2.2
click==8.0.0
cloudpickle==1.5.0
codecov==2.1.11
colorama==0.4.4
coverage[toml]==6.4
dask==2022.2.0
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ test = [
"pytest-cov == 2.10.1",
"nbval == 0.9.3",
"IPython >= 8.10.0",
"codecov == 2.1.11",
"PyYAML == 5.4",
"coverage[toml] >= 6.4",
]
Expand Down