Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ RUN apk add --no-cache \
unzip \
which \
font-noto-cjk \
lilypond \
&& apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing \
pdf2svg

Expand Down
5 changes: 5 additions & 0 deletions tests/asciidoctor.bats
Original file line number Diff line number Diff line change
Expand Up @@ -315,3 +315,8 @@ teardown() {

grep 'Mane' ${TMP_GENERATION_DIR}/sample-with-bib.html
}

@test "lilypond is installed and in the path" {
docker run -t --rm "${DOCKER_IMAGE_NAME_TO_TEST}" which lilypond
docker run -t --rm "${DOCKER_IMAGE_NAME_TO_TEST}" lilypond --version
}