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:
Christian Clauss 2024-11-17 09:42:09 +01:00 committed by GitHub
parent ec12f679bf
commit a2b48c7a87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,9 +12,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install flake8
- run: pip install flake8-import-order
- run: pip install mypy
- run: pip install flake8 flake8-import-order mypy
- run: flake8 facefusion.py install.py
- run: flake8 facefusion tests
- run: mypy facefusion.py install.py
@ -49,9 +47,7 @@ jobs:
with:
python-version: '3.10'
- run: python install.py --onnxruntime default --skip-conda
- run: pip install coveralls
- run: pip install pytest
- run: pip install pytest-cov
- run: pip install coveralls pytest pytest-cov
- run: pytest tests --cov facefusion
- run: coveralls --service github
env: