From bb7a23d69b0f4e2c10ef365a9f8cf6893cb9a2aa Mon Sep 17 00:00:00 2001 From: Ross Barnowski Date: Thu, 13 Apr 2023 22:39:10 -0700 Subject: 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 --------- Co-authored-by: Jarrod Millman Co-authored-by: Dan Schult --- .github/workflows/coverage.yml | 4 +++- requirements/test.txt | 1 - 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 -- cgit v1.2.1