From 2fbbf77d5779645ad79008b301c1d983516e5994 Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Thu, 22 Feb 2024 12:18:45 -0500 Subject: [PATCH] update codecov source (#35) --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index afe54ae..c69ff7a 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -29,11 +29,11 @@ jobs: pip install pytest-xdist - name: Install tqdm_publisher with minimal requirements - run: pip install -e .[test] # use editable mode for coverage + run: pip install .[test] - name: Run full pytest with coverage run: | - pytest -vv -rsx --cov=./src --cov-report xml:./codecov.xml + pytest -vv -rsx --cov=tqdm_publisher --cov-report xml:./codecov.xml cat ./codecov.xml - name: Upload full coverage to Codecov