mirror of
https://github.com/django-components/django-components.git
synced 2025-09-01 11:47:19 +00:00
8 lines
262 B
Python
8 lines
262 B
Python
import unittest
|
|
|
|
# Runs all tests found in filenames matching "test*""
|
|
if __name__ == '__main__':
|
|
test_loader = unittest.defaultTestLoader
|
|
test_runner = unittest.TextTestRunner()
|
|
test_suite = test_loader.discover('.')
|
|
test_runner.run(test_suite)
|