mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Enable standard unittest discovery by creating __init__.py files and renaming test modules to test*.py.
7 lines
173 B
Python
7 lines
173 B
Python
#!/usr/bin/env python3
|
|
import unittest
|
|
|
|
from pycotap import LogMode, TAPTestRunner
|
|
|
|
suite = unittest.TestLoader().discover('.')
|
|
TAPTestRunner(LogMode.LogToError).run(suite)
|