1
0
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:
2026-05-16 18:24:08 +03:00
parent 262f9a556f
commit 00e3f84f35
2 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -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
+7 -2
View File
@@ -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: