From 87bc4d243f7ebbc4864748b6cb765c4debbdedb5 Mon Sep 17 00:00:00 2001 From: daler Date: Fri, 29 Apr 2011 15:44:20 -0400 Subject: [PATCH] split out sphinx doc creation and doctests from test.sh --- compile-docs.sh | 1 + sphinx-test.sh | 1 + test.sh | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 compile-docs.sh create mode 100644 sphinx-test.sh diff --git a/compile-docs.sh b/compile-docs.sh new file mode 100644 index 00000000..b0e17f5d --- /dev/null +++ b/compile-docs.sh @@ -0,0 +1 @@ +cd docs && make html && make latexpdf diff --git a/sphinx-test.sh b/sphinx-test.sh new file mode 100644 index 00000000..e24cab77 --- /dev/null +++ b/sphinx-test.sh @@ -0,0 +1 @@ +cd docs && make doctest diff --git a/test.sh b/test.sh index 738b30aa..61186d49 100644 --- a/test.sh +++ b/test.sh @@ -1,2 +1,2 @@ python setup.py build_ext -i && \ -PATH=$PATH:../bedtools/bin/ nosetests --with-doctest --doctest-extension=.pyx pybedtools/cbedtools.pyx . && cd docs && make doctest && make html +PATH=$PATH:../bedtools/bin/ nosetests --with-doctest --doctest-extension=.pyx pybedtools/cbedtools.pyx .