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:
parent
ab1359c7e6
commit
d42e59846c
1 changed files with 5 additions and 2 deletions
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue