Skip to content

Commit 818f901

Browse files
committed
Revert "Wrap tests in xvfb-run to simulate an X server."
This reverts commit 4612d3b.
1 parent 4612d3b commit 818f901

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ jobs:
3636

3737
- name: Run tests in Docker image
3838
run: make docker-test
39-

.tools/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ RUN apt-get -q --no-allow-insecure-repositories update \
3838
texlive-pictures \
3939
texlive-plain-generic \
4040
texlive-xetex \
41-
wget \
42-
xvfb
41+
wget
4342

4443
ARG plantuml_jar=plantuml.1.2018.9.jar
4544
RUN wget https://sourceforge.net/projects/plantuml/files/${plantuml_jar} \

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ LUA_FILTERS_TEST_IMAGE = pandoc/lua-filters-test
77
test:
88
sh runtests.sh $(FILTERS)
99

10-
test-docker:
11-
xvfb-run sh runtests.sh $(FILTERS)
12-
1310
archive: .build/lua-filters.tar.gz
1411

1512
archives: .build/lua-filters.tar.gz .build/lua-filters.zip
@@ -23,7 +20,7 @@ docker-test:
2320
--rm \
2421
--volume "$(PWD):/data" \
2522
--entrypoint /usr/bin/make \
26-
$(LUA_FILTERS_TEST_IMAGE) FILTERS="${FILTERS}" test-docker
23+
$(LUA_FILTERS_TEST_IMAGE) FILTERS="${FILTERS}"
2724

2825
docker-test-image: .tools/Dockerfile
2926
docker build --tag $(LUA_FILTERS_TEST_IMAGE) --file $< .

0 commit comments

Comments
 (0)