Zine

open source content publishing system


source: scripts/run-tests @ 1279:088d2f519391

Revision 1279:088d2f519391, 460 bytes checked in by Georg Brandl <georg@…>, 2 years ago (diff)

Update copyright notices.

  • Property exe set to *
Line 
1#!/usr/bin/env python
2"""
3    Test Runner
4    ~~~~~~~~~~~
5
6    This is a wrapper script for running the Zine unittests.
7    Run it with the --help option for usage information.
8
9    :copyright: (c) 2010 by the Zine Team, see AUTHORS for more details.
10    :license: BSD, see LICENSE for more details.
11"""
12import os
13import sys
14
15path = os.path.join(os.path.dirname(__file__), os.path.pardir)
16os.chdir(path)
17sys.path.insert(0, path)
18
19from tests import main
20main()
Note: See TracBrowser for help on using the repository browser.