fix(ci): install test dependencies

This commit is contained in:
Anand Balakrishnan 2023-10-04 16:30:49 -07:00
parent 2c234a929a
commit 1fb8459b3b

View file

@ -46,7 +46,7 @@ jobs:
shell: bash shell: bash
run: | run: |
set -e set -e
pip install pyargus --find-links dist --force-reinstall pip install pyargus[test] --find-links dist --force-reinstall
pip install pytest pip install pytest
cd pyargus && pytest cd pyargus && pytest
- name: pytest - name: pytest
@ -62,14 +62,14 @@ jobs:
pip3 install -U pip pytest pip3 install -U pip pytest
run: | run: |
set -e set -e
pip3 install pyargus --find-links dist --force-reinstall pip3 install pyargus[test] --find-links dist --force-reinstall
cd pyargus && pytest cd pyargus && pytest
windows: windows:
runs-on: windows-latest runs-on: windows-latest
strategy: strategy:
matrix: matrix:
target: [x64, x86] target: [x64]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
@ -92,7 +92,7 @@ jobs:
shell: bash shell: bash
run: | run: |
set -e set -e
pip install pyargus --find-links dist --force-reinstall pip install pyargus[test] --find-links dist --force-reinstall
pip install pytest pip install pytest
cd pyargus && pytest cd pyargus && pytest
@ -122,7 +122,7 @@ jobs:
shell: bash shell: bash
run: | run: |
set -e set -e
pip install pyargus --find-links dist --force-reinstall pip install pyargus[test] --find-links dist --force-reinstall
pip install pytest pip install pytest
cd pyargus && pytest cd pyargus && pytest