ci.yml: pip now has a real dependency resolver
Provide pip with all dependencies so it can properly resolve conflicts. * https://pip.pypa.io/en/stable/topics/dependency-resolution
This commit is contained in:
parent
ec12f679bf
commit
a2b48c7a87
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -12,9 +12,7 @@ jobs:
|
|||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.10'
|
||||||
- run: pip install flake8
|
- run: pip install flake8 flake8-import-order mypy
|
||||||
- run: pip install flake8-import-order
|
|
||||||
- run: pip install mypy
|
|
||||||
- run: flake8 facefusion.py install.py
|
- run: flake8 facefusion.py install.py
|
||||||
- run: flake8 facefusion tests
|
- run: flake8 facefusion tests
|
||||||
- run: mypy facefusion.py install.py
|
- run: mypy facefusion.py install.py
|
||||||
@ -49,9 +47,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: '3.10'
|
python-version: '3.10'
|
||||||
- run: python install.py --onnxruntime default --skip-conda
|
- run: python install.py --onnxruntime default --skip-conda
|
||||||
- run: pip install coveralls
|
- run: pip install coveralls pytest pytest-cov
|
||||||
- run: pip install pytest
|
|
||||||
- run: pip install pytest-cov
|
|
||||||
- run: pytest tests --cov facefusion
|
- run: pytest tests --cov facefusion
|
||||||
- run: coveralls --service github
|
- run: coveralls --service github
|
||||||
env:
|
env:
|
||||||
|
Loading…
Reference in New Issue
Block a user