install ffmpeg for tests (#8)

This commit is contained in:
Dmitry Afanasyev 2023-09-26 05:47:20 +03:00 committed by GitHub
parent b06c09454a
commit 00dc8d37b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ jobs:
run: |
poetry config virtualenvs.in-project true
poetry install
poetry run pip install -U pip
poetry run pip install -U pip, ffmpeg
#----------------------------------------------
# run test suite
#----------------------------------------------

View File

@ -35,7 +35,7 @@ RUN if [ "$USER" != "root" ]; then \
COPY --chown=${USER}:${USER} ../poetry.lock ../pyproject.toml /app/
RUN pip install --upgrade pip && pip install poetry==$POETRY_VERSION
RUN pip install --upgrade pip && pip install poetry==$POETRY_VERSION && pip install ffmpeg
RUN poetry config virtualenvs.in-project true && \
poetry config virtualenvs.create true && \
poetry install --only main --no-interaction --no-ansi && \