1
0
Fork 0
forked from github/pelican

update command to generate functional tests output

we need to force LC_ALL="C" to avoid generating articles/pages in other
languages
This commit is contained in:
Bruno Binet 2012-07-05 00:04:32 +02:00
commit b44ea53741

View file

@ -43,9 +43,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 2 following commands::
$ pelican -o tests/output/custom/ -s samples/pelican.conf.py \
$ LC_ALL="C" pelican -o tests/output/custom/ -s samples/pelican.conf.py \
samples/content/
$ USER="Dummy Author" pelican -o tests/output/basic/ samples/content/
$ LC_ALL="C" USER="Dummy Author" pelican -o tests/output/basic/ samples/content/
Coding standards
================