Skip to content

Commit 4ce8360

Browse files
committed
fix: font location
1 parent af921da commit 4ce8360

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
- name: Build Docker image
2020
run: |
2121
docker build -t test-image .
22-
2322
- name: Run tests in Docker
2423
run: |
25-
docker run -rm test-image python -m pytest -v
24+
docker run test-image sh -c "python -m pip install pytest && python -m pytest -v"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM python:3.10.13-slim-bullseye
22

33
ENV DEBIAN_FRONTEND=noninteractive
44

5-
COPY ./fonts/sarasa-mono-sc-regular.ttf /usr/share/fonts/
5+
COPY ./data/fonts/sarasa-mono-sc-regular.ttf /usr/share/fonts/
66

77
RUN apt-get update && \
88
apt install --no-install-recommends xvfb binutils build-essential qtbase5-dev wkhtmltopdf ffmpeg dbus -yq && \

0 commit comments

Comments
 (0)