10000 refresh ci settings. by methane · Pull Request #492 · msgpack/msgpack-python · GitHub
[go: up one dir, main page]

Skip to content

refresh ci settings. #492

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Nov 25, 2021
Prev Previous commit
Next Next commit
run pure Python test
  • Loading branch information
methane committed Nov 25, 2021
commit 3987827c0885f0fc333c12f01089848a0684de01
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ jobs:
make cython
pip install .

- name: Test
- name: Test (C extension)
shell: bash
run: |
pytest -v test

- name: Test (pure Python fallback)
shell: bash
run: |
MSgPACK_PUREPYTHON=1 pytest -v test

0