File: run_tests.py

package info (click to toggle)
gameclock 5.0
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 272 kB
  • ctags: 289
  • sloc: python: 1,551; makefile: 9
file content (11 lines) | stat: -rwxr-xr-x 198 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python

import unittest
import sys
import os
import time

sys.path.append(os.path.dirname(__file__))

suite = unittest.TestLoader().discover('tests')
unittest.TextTestRunner().run(suite)