Skip to content

Commit

Permalink
interrogate potential fix
Browse files Browse the repository at this point in the history
  • Loading branch information
r3w0p committed Jun 26, 2024
1 parent fce0a28 commit 2320751
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ jobs:
coverage run -m pytest tests
coverage report --fail-under=100
- name: Documentation coverage with interrogate
run: |
interrogate -vv bobocep --fail-under 100
- name: Upload coverage reports to Codecov
if: matrix.os == 'ubuntu-latest'
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == '3.9') }}
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

- name: Documentation coverage with interrogate
run: |
interrogate -vv bobocep --fail-under 100
cd:
name: CD
needs: ci
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cidev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.9" ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
coverage report --fail-under=100
- name: Upload coverage reports to Codecov
if: matrix.os == 'ubuntu-latest'
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == '3.9') }}
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Flask==2.3.3
interrogate==1.5.0
mypy==1.5.1
pytest==7.4.2
setuptools==70.1.1
sphinx==5.0.0
sphinx-mdinclude==0.5.3
sphinx-rtd-theme==1.1.1

0 comments on commit 2320751

Please sign in to comment.