Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/tutorius/tests/run-tests.py
blob: 74efd64d0281ca5a491db397a0cb0a4fa6c858cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python
# This is a dumb script to run tests on the sugar-jhbuild installed files
# The path added is the default path for the jhbuild build

import os, sys
sys.path.insert(0,
    os.path.abspath("../../../../../../install/lib/python2.5/site-packages/")
)
import unittest
from coretests import *

unittest.main()