mirror of
https://github.com/qurator-spk/dinglehopper.git
synced 2025-06-09 20:00:01 +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
|
||||
run: python3 -m pip install -U pip
|
||||
- name: Install requirements*
|
||||
run: python3 -m pip install -r requirements*.txt
|
||||
- name: Install requirements*.txt
|
||||
run: |
|
||||
for requirements_txt in requirements*.txt; do
|
||||
python3 -m pip install -r requirements_txt;
|
||||
done
|
||||
|
||||
- name: Test
|
||||
run: cd src && python3 -m pytest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue