| 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 | """ |
|---|
| 12 | import os |
|---|
| 13 | import sys |
|---|
| 14 | |
|---|
| 15 | path = os.path.join(os.path.dirname(__file__), os.path.pardir) |
|---|
| 16 | os.chdir(path) |
|---|
| 17 | sys.path.insert(0, path) |
|---|
| 18 | |
|---|
| 19 | from tests import main |
|---|
| 20 | main() |
|---|
Note: See
TracBrowser
for help on using the repository browser.