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

Remove deprecated codecov dependency from CI #1494

Merged
merged 10 commits into from
Sep 18, 2021
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
conda install gmt=6.2.0 numpy=${{ matrix.numpy-version }} \
pandas xarray netCDF4 packaging \
${{ matrix.optional-packages }} \
codecov coverage[toml] dvc ipython make \
coverage[toml] dvc ipython make \
pytest-cov pytest-mpl pytest>=6.0 \
sphinx-gallery

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ PyGMT
.. image:: https://github.com/GenericMappingTools/pygmt/workflows/GMT%20Dev%20Tests/badge.svg
:alt: GitHub Actions GMT Dev Tests status
:target: https://github.com/GenericMappingTools/pygmt/actions/workflows/ci_tests_dev.yaml
.. image:: https://img.shields.io/codecov/c/github/GenericMappingTools/pygmt/main.svg?style=flat-square
.. image:: https://codecov.io/gh/GenericMappingTools/pygmt/branch/main/graph/badge.svg?token=78Fu4EWstx
:alt: Test coverage status
:target: https://codecov.io/gh/GenericMappingTools/pygmt
:target: https://app.codecov.io/gh/GenericMappingTools/pygmt
.. image:: https://img.shields.io/pypi/pyversions/pygmt.svg?style=flat-square
:alt: Compatible Python versions.
:target: https://pypi.python.org/pypi/pygmt
Expand Down
5 changes: 5 additions & 0 deletions doc/maintenance.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ There are 11 configuration files located in `.github/workflows`:
Python/NumPy versions
- Latest Python/NumPy versions + optional packages (e.g. GeoPandas)

This workflow is also responsible for uploading test coverage reports stored
in `.coverage.xml` to https://app.codecov.io/gh/GenericMappingTools/pygmt
via the [Codecov GitHub Action](https://github.com/codecov/codecov-action).
More codecov related configurations are stored in `.github/codecov.yml`.

3. `ci_docs.yml` (Build documentation on Linux/macOS/Windows)

This is run on every commit to the *main* and Pull Request branches.
Expand Down
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ dependencies:
# Development dependencies
- black
- blackdoc
- codecov
- coverage[toml]
- docformatter
- dvc
Expand Down