Skip to content

Commit c4aa294

Browse files
authored
Merge pull request #15 from r3w0p/1.2.1
interrogate potential fix
2 parents e86902f + 2320751 commit c4aa294

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/cicd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ jobs:
4646
coverage run -m pytest tests
4747
coverage report --fail-under=100
4848
49-
- name: Documentation coverage with interrogate
50-
run: |
51-
interrogate -vv bobocep --fail-under 100
52-
5349
- name: Upload coverage reports to Codecov
54-
if: matrix.os == 'ubuntu-latest'
50+
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == '3.9') }}
5551
uses: codecov/codecov-action@v4.0.1
5652
with:
5753
token: ${{ secrets.CODECOV_TOKEN }}
5854
verbose: true
5955

56+
- name: Documentation coverage with interrogate
57+
run: |
58+
interrogate -vv bobocep --fail-under 100
59+
6060
cd:
6161
name: CD
6262
needs: ci

.github/workflows/cidev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
os: [ ubuntu-latest ]
18-
python-version: [ "3.9" ]
17+
os: [ ubuntu-latest, macos-latest, windows-latest ]
18+
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@v2
@@ -48,7 +48,7 @@ jobs:
4848
coverage report --fail-under=100
4949
5050
- name: Upload coverage reports to Codecov
51-
if: matrix.os == 'ubuntu-latest'
51+
if: ${{ (matrix.os == 'ubuntu-latest') && (matrix.python-version == '3.9') }}
5252
uses: codecov/codecov-action@v4.0.1
5353
with:
5454
token: ${{ secrets.CODECOV_TOKEN }}

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Flask==2.3.3
55
interrogate==1.5.0
66
mypy==1.5.1
77
pytest==7.4.2
8+
setuptools==70.1.1
89
sphinx==5.0.0
910
sphinx-mdinclude==0.5.3
1011
sphinx-rtd-theme==1.1.1

0 commit comments

Comments
 (0)