Skip to content

Commit b4f27e3

Browse files
committed
Also remove the Flask docs.
1 parent 42a03af commit b4f27e3

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

README

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -17,33 +17,3 @@ Usage
1717
PyZen adds a new manage.py command ``zen``. To close the tester use
1818
ctrl+c.
1919

20-
Flask
21-
=====
22-
Using PyZen with Flask requires Flask-Script and plays well with
23-
Flask-Testing (though it is not required).
24-
25-
Configuration
26-
-------------
27-
PyZen exposes two Flask-Script commands: ``Test`` and ``ZenTest``. To
28-
configure both::
29-
30-
from flaskext.script import Manager
31-
from pyzen.flaskext.script import Test, ZenTest
32-
33-
manager = Manager(app)
34-
35-
manager.add_command('test', Test())
36-
manager.add_command('zen', ZenTest())
37-
38-
if __name__ == "__main__":
39-
manager.run()
40-
41-
42-
The default discovery pattern is ``*/tests/*.py;*/tests.py``. This default
43-
can be override with a ``pattern`` keyword argument to both classes.
44-
45-
Usage
46-
-----
47-
The ``Test`` command will run a single test run and exit. The ``ZenTest``
48-
command will run the normal PyZen continuous tester. You can override the
49-
auto-detected base directory with the ``--start-dir=`` argument.

0 commit comments

Comments
 (0)