Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit d3cf8d4

Browse files
committed
ci: install pandoc
Had to change drone image to debian based one because pandoc is not packaged up in alpine.
1 parent 7b3597d commit d3cf8d4

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.drone.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ pipeline:
1515
- pylama packet test setup.py
1616

1717
test:
18-
image: python:${PYTHON_VERSION}-alpine
18+
image: python:${PYTHON_VERSION}
1919
commands:
20+
- apt update -y && apt install -y pandoc
2021
- pip install tox
2122
- tox

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1+
addons:
2+
apt:
3+
packages:
4+
- pandoc
15
language: python
26
python:
37
- "2.7"
48
- "3.3"
59
- "3.4"
610
- "3.5"
711
- "3.6"
12+
sudo: false
813

914
install: pip install tox
1015
script: tox

0 commit comments

Comments
 (0)