1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-06-07 19:05:13 +02:00

🚧 GitHub Actions: Try shell for loop to install from all requirements*.txt

This commit is contained in:
Mike Gerber 2023-08-04 16:41:03 +02:00
parent ab1359c7e6
commit d42e59846c

View file

@ -17,8 +17,11 @@ jobs:
- name: Update pip - name: Update pip
run: python3 -m pip install -U pip run: python3 -m pip install -U pip
- name: Install requirements* - name: Install requirements*.txt
run: python3 -m pip install -r requirements*.txt run: |
for requirements_txt in requirements*.txt; do
python3 -m pip install -r requirements_txt;
done
- name: Test - name: Test
run: cd src && python3 -m pytest run: cd src && python3 -m pytest