fix(ci): install test dependencies
This commit is contained in:
parent
2c234a929a
commit
1fb8459b3b
1 changed files with 5 additions and 5 deletions
10
.github/workflows/release.yaml
vendored
10
.github/workflows/release.yaml
vendored
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue