summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoss Barnowski <rossbar@berkeley.edu>2023-04-13 22:39:10 -0700
committerGitHub <noreply@github.com>2023-04-13 22:39:10 -0700
commitbb7a23d69b0f4e2c10ef365a9f8cf6893cb9a2aa (patch)
tree1fe35ed2b5e4a1017f4cdb27f8ab1df96cae02b7
parent58f7b352b4ee99b7f185cc3a54caa6941c209fe3 (diff)
downloadnetworkx-bb7a23d69b0f4e2c10ef365a9f8cf6893cb9a2aa.tar.gz
Replacing codecov Python CLI with gh action. (#6635)
* WIP: Try replacing codecov Python CLI with gh action. * Update .github/workflows/coverage.yml Co-authored-by: Dan Schult <dschult@colgate.edu> --------- Co-authored-by: Jarrod Millman <jarrod.millman@gmail.com> Co-authored-by: Dan Schult <dschult@colgate.edu>
-rw-r--r--.github/workflows/coverage.yml4
-rw-r--r--requirements/test.txt1
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index b9f4e96d..1102a34b 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -39,4 +39,6 @@ jobs:
- name: Test NetworkX
run: |
pytest --cov=networkx --runslow --doctest-modules --durations=20 --pyargs networkx
- codecov
+
+ - name: Upload to codecov
+ uses: codecov/codecov-action@v3
diff --git a/requirements/test.txt b/requirements/test.txt
index d5962a87..44e330e5 100644
--- a/requirements/test.txt
+++ b/requirements/test.txt
@@ -1,3 +1,2 @@
pytest>=7.2
pytest-cov>=4.0
-codecov>=2.1