14617.2.2
by William Grant
Update a few templates. |
1 |
# Copyright 2012 Canonical Ltd. This software is licensed under the
|
9492.1.1
by Karl Fogel
Add utilities/formatdoctest.py and utilities/migrater/, both brought |
2 |
# GNU Affero General Public License version 3 (see the file LICENSE).
|
3 |
||
4 |
"""
|
|
5 |
Run the doctests and pagetests.
|
|
6 |
"""
|
|
7 |
||
8 |
import os |
|
9 |
||
14557.1.8
by Curtis Hovey
Updated migrater and fix bad zcml. |
10 |
from lp.services.testing import build_test_suite |
9492.1.1
by Karl Fogel
Add utilities/formatdoctest.py and utilities/migrater/, both brought |
11 |
|
12 |
||
13 |
here = os.path.dirname(os.path.realpath(__file__)) |
|
14 |
||
15 |
special = {} |
|
16 |
||
17 |
||
18 |
def test_suite(): |
|
14557.1.8
by Curtis Hovey
Updated migrater and fix bad zcml. |
19 |
return build_test_suite(here, special) |