diff options
| author | Chris McDonough <chrism@plope.com> | 2011-07-01 02:08:03 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-07-01 02:08:03 -0400 |
| commit | 05a1b4a37df7e855747f66174a472b0de3ce1c9e (patch) | |
| tree | d9ca781390b0ebffd33a7bd130444e3ff41a4b84 /docs/tutorials/wiki2/src/tests/setup.cfg | |
| parent | 371a670b02052dcbf42629f228373cae805b0dd3 (diff) | |
| download | pyramid-05a1b4a37df7e855747f66174a472b0de3ce1c9e.tar.gz pyramid-05a1b4a37df7e855747f66174a472b0de3ce1c9e.tar.bz2 pyramid-05a1b4a37df7e855747f66174a472b0de3ce1c9e.zip | |
- The Wiki2 tutorial "Tests" chapter had two bugs: it did not tell the user
to depend on WebTest, and 2 tests failed as the result of changes to
Pyramid itself. These issues have been fixed.
Diffstat (limited to 'docs/tutorials/wiki2/src/tests/setup.cfg')
| -rw-r--r-- | docs/tutorials/wiki2/src/tests/setup.cfg | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/tutorials/wiki2/src/tests/setup.cfg b/docs/tutorials/wiki2/src/tests/setup.cfg new file mode 100644 index 000000000..23b2ad983 --- /dev/null +++ b/docs/tutorials/wiki2/src/tests/setup.cfg @@ -0,0 +1,27 @@ +[nosetests] +match=^test +nocapture=1 +cover-package=tutorial +with-coverage=1 +cover-erase=1 + +[compile_catalog] +directory = tutorial/locale +domain = tutorial +statistics = true + +[extract_messages] +add_comments = TRANSLATORS: +output_file = tutorial/locale/tutorial.pot +width = 80 + +[init_catalog] +domain = tutorial +input_file = tutorial/locale/tutorial.pot +output_dir = tutorial/locale + +[update_catalog] +domain = tutorial +input_file = tutorial/locale/tutorial.pot +output_dir = tutorial/locale +previous = true |
