We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af921da commit 4ce8360Copy full SHA for 4ce8360
.github/workflows/run-tests.yml
@@ -19,7 +19,6 @@ jobs:
19
- name: Build Docker image
20
run: |
21
docker build -t test-image .
22
-
23
- name: Run tests in Docker
24
25
- docker run -rm test-image python -m pytest -v
+ docker run test-image sh -c "python -m pip install pytest && python -m pytest -v"
Dockerfile
@@ -2,7 +2,7 @@ FROM python:3.10.13-slim-bullseye
2
3
ENV DEBIAN_FRONTEND=noninteractive
4
5
-COPY ./fonts/sarasa-mono-sc-regular.ttf /usr/share/fonts/
+COPY ./data/fonts/sarasa-mono-sc-regular.ttf /usr/share/fonts/
6
7
RUN apt-get update && \
8
apt install --no-install-recommends xvfb binutils build-essential qtbase5-dev wkhtmltopdf ffmpeg dbus -yq && \
0 commit comments