1
# Copyright 2009 Canonical Ltd. This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
4
"""Run all of the pagetests, in priority order."""
11
from canonical.launchpad.testing.pages import PageTestSuite
14
here = os.path.dirname(os.path.realpath(__file__))
19
dir for dir in os.listdir(here)
20
if not dir.startswith('.') and os.path.isdir(os.path.join(here, dir)))
22
suite = unittest.TestSuite()
23
for storydir in stories:
24
suite.addTest(PageTestSuite(storydir))