Skip to content

Commit

Permalink
run tests without C-extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Mar 2, 2024
1 parent 56650ad commit d0d4f87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/testcext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel pytest pyparsing fonttools numpy Pillow
- name: Install with C-extensions
run: |
python -m pip install .
- name: Test with C-extensions
run: |
# install test dependencies
python -m pip install pytest Pillow
python -m pytest tests integration_tests
6 changes: 4 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ jobs:
run: |
python -m pip install --upgrade pip
# Excluding Cython to test the pure Python version.
python -m pip install setuptools wheel pytest pyparsing fonttools numpy Pillow
python -m pip install setuptools wheel
- name: Install without C-extensions
run: |
python -m pip install .
python -m pip install --no-build-isolation .
- name: Test without C-extensions
run: |
# install test dependencies
python -m pip install pytest Pillow
python -m pytest tests integration_tests

0 comments on commit d0d4f87

Please sign in to comment.