Skip to content

Commit

Permalink
ci: disabling codecov pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Brito committed Dec 20, 2023
1 parent a52e383 commit 0b763ce
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -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
# 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

0 comments on commit 0b763ce

Please sign in to comment.