We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c482d commit aa53054Copy full SHA for aa53054
.github/workflows/main.yml
@@ -26,7 +26,7 @@ jobs:
26
runs-on:
27
- ubuntu-latest
28
- macos-latest
29
- # - windows-latest
+ - windows-latest
30
runs-on: ${{ matrix.runs-on }}
31
steps:
32
- uses: actions/checkout@v3
@@ -42,7 +42,13 @@ jobs:
42
- name: Test for Linux and macOS
43
if: runner.os != 'Windows'
44
run: |
45
+ pytest --cov .
46
pre-commit run -a
47
+ - name: Test for Windows
48
+ if: runner.os == 'Windows'
49
+ run: |
50
+ pytest --cov
51
+ - uses: codecov/codecov-action@v3
52
build:
53
needs: test
54
strategy:
requirements/dev.txt
@@ -3,3 +3,4 @@
3
4
pre-commit
5
ptpython[ptipython]
6
+pytest-cov
0 commit comments