fix missing for ffmpeg;

This commit is contained in:
Jesse Bannon 2023-01-11 21:48:33 -08:00
parent 3b0869b2f6
commit 8306840f26

View file

@ -69,7 +69,7 @@ jobs:
- name: Run unit tests with coverage - name: Run unit tests with coverage
run: | run: |
sudo apt-get install -y ffmpeg sudo apt-get install -y --fix-missing ffmpeg
source /opt/env/bin/activate source /opt/env/bin/activate
coverage run -m pytest tests/unit && coverage xml -o /opt/coverage/unit/coverage.xml coverage run -m pytest tests/unit && coverage xml -o /opt/coverage/unit/coverage.xml
@ -96,7 +96,7 @@ jobs:
- name: Run e2e soundcloud tests with coverage - name: Run e2e soundcloud tests with coverage
run: | run: |
sudo apt-get install -y ffmpeg sudo apt-get install -y --fix-missing ffmpeg
source /opt/env/bin/activate source /opt/env/bin/activate
coverage run -m pytest tests/e2e/soundcloud && coverage xml -o /opt/coverage/soundcloud/coverage.xml coverage run -m pytest tests/e2e/soundcloud && coverage xml -o /opt/coverage/soundcloud/coverage.xml
@ -123,7 +123,7 @@ jobs:
- name: Run e2e youtube tests with coverage - name: Run e2e youtube tests with coverage
run: | run: |
sudo apt-get install -y ffmpeg sudo apt-get install -y --fix-missing ffmpeg
source /opt/env/bin/activate source /opt/env/bin/activate
coverage run -m pytest tests/e2e/youtube && coverage xml -o /opt/coverage/youtube/coverage.xml coverage run -m pytest tests/e2e/youtube && coverage xml -o /opt/coverage/youtube/coverage.xml
@ -150,7 +150,7 @@ jobs:
- name: Run e2e plugin tests with coverage - name: Run e2e plugin tests with coverage
run: | run: |
sudo apt-get install -y ffmpeg sudo apt-get install -y --fix-missing ffmpeg
source /opt/env/bin/activate source /opt/env/bin/activate
coverage run -m pytest tests/e2e/plugins && coverage xml -o /opt/coverage/plugins/coverage.xml coverage run -m pytest tests/e2e/plugins && coverage xml -o /opt/coverage/plugins/coverage.xml