~mgedmin/gtimelog/ehabkost-integration

« back to all changes in this revision

Viewing changes to runtests

  • Committer: mg
  • Date: 2008-04-22 19:13:42 UTC
  • Revision ID: svn-v4:097e82c0-97e3-0310-a93d-98bb3a55b02b::97
Since setup.py test stopped working for no explicable reason, add a top-level
script to run the test suite.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
"""
 
3
Script to run GTimeLog's tests from the source checkout
 
4
"""
 
5
import os
 
6
import sys
 
7
 
 
8
pkgdir = os.path.join(os.path.dirname(__file__), 'src')
 
9
sys.path.insert(0, pkgdir)
 
10
 
 
11
from gtimelog.test_gtimelog import main
 
12
main()