mirror of
https://github.com/darkzoul5/YoutubePlaylistSync.git
synced 2026-07-03 04:23:59 +03:00
ci: fix deps
This commit is contained in:
@@ -38,5 +38,5 @@ jobs:
|
||||
- name: Run integration tests
|
||||
run: |
|
||||
set -euo pipefail
|
||||
python -m pip install -e . ".[test]"
|
||||
python -m pip install -e ".[test]"
|
||||
pytest -m integration
|
||||
|
||||
@@ -24,13 +24,18 @@ jobs:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
cache: 'pip'
|
||||
|
||||
- name: Install project
|
||||
run: |
|
||||
set -euo pipefail
|
||||
python -m pip install --upgrade pip
|
||||
# Install project (editable) and test deps
|
||||
python -m pip install -e .
|
||||
python -m pip install pytest
|
||||
python -m pip install -e ".[test]"
|
||||
|
||||
- name: Run tests
|
||||
env:
|
||||
|
||||
Reference in New Issue
Block a user