From 0b763ce2f7ddec30e861ccbc4bb11d44429f51d6 Mon Sep 17 00:00:00 2001 From: Alexandre Brito Date: Wed, 20 Dec 2023 11:25:09 -0300 Subject: [PATCH] ci: disabling codecov pipe --- .github/workflows/codecov.yml | 56 +++++++++++++++++------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index ae36a22..85207ad 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -1,29 +1,29 @@ -name: Code Coverage -on: - push: - branches: - - "dev" -jobs: - codecov: - name: Codecov - runs-on: windows-latest +# name: Code Coverage +# on: +# push: +# branches: +# - "dev" +# jobs: +# codecov: +# name: Codecov +# runs-on: windows-latest - steps: - - uses: actions/checkout@v1 - - name: Set up Python - uses: actions/setup-python@master - with: - python-version: 3.9 - - name: Install Dependencies - run: | - pip install -r requirements.txt - - name: Generate Code Coverage Report - run: | - pip install pytest pytest-cov - pytest --cov=. --cov-report=xml ./tests - - name: Upload Report to codecov website - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.xml - flags: pytest \ No newline at end of file +# steps: +# - uses: actions/checkout@v1 +# - name: Set up Python +# uses: actions/setup-python@master +# with: +# python-version: 3.9 +# - name: Install Dependencies +# run: | +# pip install -r requirements.txt +# - name: Generate Code Coverage Report +# run: | +# pip install pytest pytest-cov +# pytest --cov=. --cov-report=xml ./tests +# - name: Upload Report to codecov website +# uses: codecov/codecov-action@v1 +# with: +# token: ${{ secrets.CODECOV_TOKEN }} +# file: ./coverage.xml +# flags: pytest \ No newline at end of file