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.
2 parents 7fe20ea + 56e528c commit 47a9ba8Copy full SHA for 47a9ba8
.github/workflows/test.yml
@@ -9,6 +9,7 @@ on:
9
jobs:
10
test:
11
strategy:
12
+ fail-fast: false
13
matrix:
14
os: [ubuntu-latest, windows-latest, macos-latest]
15
@@ -27,7 +28,8 @@ jobs:
27
28
29
- name: Run tests
30
run: |
31
+ pip install pytest
32
unset GITHUB_ACTION
33
oj-verify -h
- python setup.py test
34
+ pytest
35
shell: bash
.gitignore
@@ -7,4 +7,6 @@ ENV/
7
env.bak/
8
venv.bak/
+# Python
__pycache__
+build/
0 commit comments