fix(ci): actually install the test dependencies

This commit is contained in:
Anand Balakrishnan 2023-10-04 16:37:03 -07:00
parent 1fb8459b3b
commit ec0224d511

View file

@ -46,8 +46,8 @@ jobs:
shell: bash shell: bash
run: | run: |
set -e set -e
pip install pyargus[test] --find-links dist --force-reinstall pip install pyargus --find-links dist --force-reinstall
pip install pytest pip install pytest pytest-cov hypothesis
cd pyargus && pytest cd pyargus && pytest
- name: pytest - name: pytest
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }} if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
@ -59,10 +59,10 @@ jobs:
install: | install: |
apt-get update apt-get update
apt-get install -y --no-install-recommends python3 python3-pip apt-get install -y --no-install-recommends python3 python3-pip
pip3 install -U pip pytest pip3 install -U pip pytest pytest-cov hypothesis
run: | run: |
set -e set -e
pip3 install pyargus[test] --find-links dist --force-reinstall pip3 install pyargus --find-links dist --force-reinstall
cd pyargus && pytest cd pyargus && pytest
windows: windows:
@ -92,8 +92,8 @@ jobs:
shell: bash shell: bash
run: | run: |
set -e set -e
pip install pyargus[test] --find-links dist --force-reinstall pip install pyargus --find-links dist --force-reinstall
pip install pytest pip install pytest pytest-cov hypothesis
cd pyargus && pytest cd pyargus && pytest
macos: macos:
@ -122,8 +122,8 @@ jobs:
shell: bash shell: bash
run: | run: |
set -e set -e
pip install pyargus[test] --find-links dist --force-reinstall pip install pyargus --find-links dist --force-reinstall
pip install pytest pip install pytest pytest-cov hypothesis
cd pyargus && pytest cd pyargus && pytest
sdist: sdist: