Skip to content

Commit

Permalink
added test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
sebleier authored and andymccurdy committed Jun 1, 2010
1 parent 9f0ed62 commit 9f360d5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions run_tests
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env python

import unittest
from tests import all_tests


if __name__ == "__main__":
tests = all_tests()
results = unittest.TextTestRunner().run(tests)

0 comments on commit 9f360d5

Please sign in to comment.