From 2cb89ce528a6611c0df9b40b300364676fbf0479 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 6 Mar 2013 09:20:35 -0500 Subject: [PATCH] docs/contribute.rst: Update tests/output generation for moved tests This brings the docs back up to date after 547f8d2 (Move the tests into pelican. Fix #500, 2013-04-06). --- docs/contribute.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contribute.rst b/docs/contribute.rst index 3ab86263..2069765c 100644 --- a/docs/contribute.rst +++ b/docs/contribute.rst @@ -54,9 +54,9 @@ If you have made changes that affect the output of a Pelican-generated weblog, then you should update the output used by functional tests. To do so, you can use the following two commands:: - $ LC_ALL="C" pelican -o tests/output/custom/ -s samples/pelican.conf.py \ + $ LC_ALL="C" pelican -o pelican/tests/output/custom/ -s samples/pelican.conf.py \ samples/content/ - $ LC_ALL="C" pelican -o tests/output/basic/ samples/content/ + $ LC_ALL="C" pelican -o pelican/tests/output/basic/ samples/content/ testing for python3 -------------------