Skip to content

Commit

Permalink
remove usages of deprecated codecov package (#33)
Browse files Browse the repository at this point in the history
* remove usages of deprecated `codecov` package

* use `codecov-uploader`
  • Loading branch information
zacharyburnett committed Apr 14, 2023
1 parent 8116d3b commit 101080f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ steps:
python -m pip install pytest pytest-azurepipelines
pytest --cov=./
coverage xml
codecov -t "$CODECOV"
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t "$CODECOV"
displayName: 'pytest'
env:
CODECOV: $(codecov)
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
'test': [
'pytest',
'pytest-cov',
'codecov',
],
},
packages=find_packages(),
Expand Down

0 comments on commit 101080f

Please sign in to comment.