1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""
Run the doctests and pagetests.
"""
import os
from canonical.launchpad.testing.systemdocs import (
LayeredDocFileSuite,
setUp,
tearDown,
)
from canonical.testing.layers import DatabaseLayer, LaunchpadZopelessLayer
from lp.services.testing import build_test_suite
here = os.path.dirname(os.path.realpath(__file__))
special = {
'script-monitoring.txt': LayeredDocFileSuite(
'../doc/script-monitoring.txt',
setUp=setUp, tearDown=tearDown,
layer=LaunchpadZopelessLayer,
),
'launchpad-scripts.txt': LayeredDocFileSuite(
'../doc/launchpad-scripts.txt',
layer=DatabaseLayer,
),
}
def test_suite():
return build_test_suite(here, special)
|