From 534b22164a0d2c2bf7e878bef9299389e3c808be Mon Sep 17 00:00:00 2001 From: Adalene_codecov <152432831+Adal3n3@users.noreply.github.com> Date: Mon, 5 Aug 2024 18:45:48 -0700 Subject: [PATCH] disabled token --- .github/workflows/ci.yml | 6 +++--- app/test_calculator.py | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e42465a..e311d7fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,11 +14,11 @@ jobs: python-version: '3.10' - name: Install dependencies run: pip install -r requirements.txt - - name: Run tests and collect coverage - run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }} + # - name: Run tests and collect coverage + # run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }} - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 with: verbose: true env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/app/test_calculator.py b/app/test_calculator.py index f5641938..78a031f8 100644 --- a/app/test_calculator.py +++ b/app/test_calculator.py @@ -1,6 +1,5 @@ from .calculator import Calculator - def test_add(): assert Calculator.add(1, 2) == 3.0 assert Calculator.add(1.0, 2.0) == 3.0