summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-05-23 12:28:29 -0700
committerSteve Piercy <web@stevepiercy.com>2016-05-23 12:28:29 -0700
commit9cd1d152c450592f29264dfdc137c8015437e1aa (patch)
treec7e3110911cddd43c581c3c597cf336b9d51f955 /tox.ini
parentcd1cfa89ffd6257106fe7a7ebd2b41a476c9e9c1 (diff)
downloadpyramid-9cd1d152c450592f29264dfdc137c8015437e1aa.tar.gz
pyramid-9cd1d152c450592f29264dfdc137c8015437e1aa.tar.bz2
pyramid-9cd1d152c450592f29264dfdc137c8015437e1aa.zip
add optional latexpdf build for PDF to tox
- Closes #2575
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 7 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 55c723716..0156d9e51 100644
--- a/tox.ini
+++ b/tox.ini
@@ -64,6 +64,13 @@ commands =
pip install pyramid[docs]
make -C docs doctest html epub BUILDDIR={envdir} "SPHINXOPTS=-W -E"
+[testenv:pdf]
+basepython = python3.5
+whitelist_externals = make
+commands =
+ pip install pyramid[docs]
+ make -C docs latexpdf BUILDDIR={envdir} "SPHINXOPTS=-W -E"
+
# we separate coverage into its own testenv because a) "last run wins" wrt
# cobertura jenkins reporting and b) pypy and jython can't handle any
# combination of versions of coverage and nosexcover that i can find.