Skip to content

Commit

Permalink
Don't test extension module as a separate step
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Sep 30, 2021
1 parent 8a6be5a commit 26bf719
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Build and install
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip cython
cythonize -3i pe/*.pyx
pip install .
- name: Lint with flake8
run: |
Expand All @@ -48,8 +49,3 @@ jobs:
run: |
pip install mypy
mypy pe
- name: Test extension module with pytest
run: |
pip install cython
cythonize -3i pe/*.pyx
pytest

0 comments on commit 26bf719

Please sign in to comment.