Skip to content

Commit

Permalink
install testing dependencies after build
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann authored Apr 7, 2024
1 parent 758ff6e commit 4bb2bf9
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/branchbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis pandas Cython==3.0.10
pip install Cython==3.0.10
- name: Generate cython
run: |
Expand All @@ -33,6 +33,10 @@ jobs:
# test whether tarball contains all files required for compiling
pip install dist/rapidfuzz-*.tar.gz -v
- name: Install testing dependencies
run: |
pip install pytest hypothesis pandas
- name: Test with pytest
run: |
pytest tests
Expand Down Expand Up @@ -64,15 +68,15 @@ jobs:
cmake --build .
sudo cmake --build . --target install
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis pandas
- name: build
run: |
pip install . -v
- name: Install testing dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis pandas
- name: Test with pytest
run: |
pytest tests
Expand Down Expand Up @@ -104,15 +108,15 @@ jobs:
cmake --build .
sudo cmake --build . --target install
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis pandas
- name: build
run: |
pip install . -v
- name: Install testing dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis pandas
- name: Test with pytest
run: |
pytest tests
Expand Down

0 comments on commit 4bb2bf9

Please sign in to comment.