Install plugin dependencies in GitHub Actions

This commit is contained in:
Filip Š 2020-04-07 13:54:58 +02:00 committed by GitHub
parent 5cff378e10
commit 4b3e8cd212
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ jobs:
- name: Install
run: |
python3 -m pip install --upgrade -r requirements.txt
for PLUGIN in $(ls plugins/[^disabled-]*/requirements.txt); do python3 -m pip install --upgrade -r ${PLUGIN}; done
python3 -m pip list
- name: Prepare for tests