mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2025-12-16 00:50:06 +01:00
17 lines
278 B
Python
Executable File
17 lines
278 B
Python
Executable File
#!/usr//bin/env python
|
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
|
|
sys.path[0:0] = ['.', '..']
|
|
suite = unittest.TestLoader().loadTestsFromNames(
|
|
[
|
|
'test_osaca'
|
|
]
|
|
)
|
|
|
|
testresult = unittest.TextTestRunner(verbosity=2).run(suite)
|
|
sys.exit(0 if testresult.wasSuccessful() else 1)
|