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 codecov #292

Merged
merged 1 commit into from
Jul 26, 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
8 changes: 2 additions & 6 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
python-version: [3.8, 3.9, '3.10', 3.x]
pip-packages:
- "setuptools pip pytest pytest-cov coverage codecov boutdata xarray numpy>=1.16.0"
- "setuptools pip pytest pytest-cov coverage boutdata xarray numpy>=1.16.0"
fail-fast: false

steps:
Expand All @@ -41,8 +41,6 @@ jobs:
run: |
pip install pytest
pytest -v --long --cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1


pytest-min-versions:
Expand All @@ -53,7 +51,7 @@ jobs:
matrix:
python-version: [3.8]
pip-packages:
- "setuptools pip pytest pytest-cov coverage codecov boutdata==0.1.4 xarray==0.18.0 dask==2.10.0 numpy==1.18.0 natsort==5.5.0 matplotlib==3.1.1 animatplot==0.4.2 netcdf4==1.4.2 Pillow==6.1.0" # test with oldest supported version of packages. Note, using numpy==1.18.0 as a workaround because numpy==1.17.0 is not supported on Python-3.7, even though we should currently support numpy==1.17.0.
- "setuptools pip pytest pytest-cov coverage boutdata==0.1.4 xarray==0.18.0 dask==2.10.0 numpy==1.18.0 natsort==5.5.0 matplotlib==3.1.1 animatplot==0.4.2 netcdf4==1.4.2 Pillow==6.1.0" # test with oldest supported version of packages. Note, using numpy==1.18.0 as a workaround because numpy==1.17.0 is not supported on Python-3.7, even though we should currently support numpy==1.17.0.
fail-fast: false

steps:
Expand All @@ -72,8 +70,6 @@ jobs:
run: |
pip install pytest
pytest -v --long --cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1


# Need to tidy up the things that flake8 finds before we activate this
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
python-version: [3.8, 3.9, '3.10', 3.x]
pip-packages:
- "setuptools pip pytest pytest-cov coverage codecov boutdata xarray numpy>=1.16.0"
- "setuptools pip pytest pytest-cov coverage boutdata xarray numpy>=1.16.0"
fail-fast: false

steps:
Expand All @@ -41,8 +41,6 @@ jobs:
run: |
pip install pytest
pytest -v --long --cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1


pytest-min-versions:
Expand All @@ -53,7 +51,7 @@ jobs:
matrix:
python-version: [3.8]
pip-packages:
- "setuptools pip pytest pytest-cov coverage codecov boutdata==0.1.4 xarray==0.18.0 dask==2.10.0 numpy==1.18.0 natsort==5.5.0 matplotlib==3.1.1 animatplot==0.4.2 netcdf4==1.4.2 Pillow==7.2.0" # test with oldest supported version of packages. Note, using numpy==1.18.0 as a workaround because numpy==1.17.0 is not supported on Python-3.7, even though we should currently support numpy==1.17.0.
- "setuptools pip pytest pytest-cov coverage boutdata==0.1.4 xarray==0.18.0 dask==2.10.0 numpy==1.18.0 natsort==5.5.0 matplotlib==3.1.1 animatplot==0.4.2 netcdf4==1.4.2 Pillow==7.2.0" # test with oldest supported version of packages. Note, using numpy==1.18.0 as a workaround because numpy==1.17.0 is not supported on Python-3.7, even though we should currently support numpy==1.17.0.
fail-fast: false

steps:
Expand All @@ -72,8 +70,6 @@ jobs:
run: |
pip install pytest
pytest -v --long --cov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1


# Need to tidy up the things that flake8 finds before we activate this
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# xBOUT

[![Build Status](https://github.com/boutproject/xBOUT/workflows/master/badge.svg)](https://github.com/boutproject/xBOUT/actions)
[![codecov](https://codecov.io/gh/boutproject/xBOUT/branch/master/graph/badge.svg)](https://codecov.io/gh/boutproject/xBOUT) [![Documentation Status](https://readthedocs.org/projects/xbout/badge/?version=latest)](https://xbout.readthedocs.io/en/latest/?badge=latest) [![DOI](https://zenodo.org/badge/160846663.svg)](https://zenodo.org/badge/latestdoi/160846663)
[![Documentation Status](https://readthedocs.org/projects/xbout/badge/?version=latest)](https://xbout.readthedocs.io/en/latest/?badge=latest)
[![DOI](https://zenodo.org/badge/160846663.svg)](https://zenodo.org/badge/latestdoi/160846663)

Documentation: https://xbout.readthedocs.io

Expand Down
Loading