28 lines
472 B
YAML
28 lines
472 B
YAML
machine:
|
|
python:
|
|
version: 3.6.0
|
|
node:
|
|
version: 6.10.2
|
|
|
|
general:
|
|
artifacts:
|
|
- test-files/out/
|
|
|
|
dependencies:
|
|
pre:
|
|
- sudo apt install pandoc pandoc-citeproc
|
|
- bash scripts/before_script.sh
|
|
|
|
post:
|
|
- pip install -r dev-requirements.txt
|
|
|
|
|
|
test:
|
|
override:
|
|
- npm test
|
|
- flake8 md_pdf/ --ignore=E128,E501
|
|
- safety check
|
|
- bandit -r md_pdf/
|
|
- mdp --update-csl -vvv
|
|
- cd test-files/ && mdp -vvv
|
|
- scripts/run-tests.sh
|