You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
306 B
Python
14 lines
306 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import system_tests
|
|
import os
|
|
import unittest
|
|
|
|
bSkip=not os.path.isfile(system_tests.unit_tests)
|
|
if bSkip:
|
|
raise unittest.SkipTest('*** %s does not exist ***' % system_tests.unit_tests)
|
|
|
|
lines=system_tests.BT.runTest(system_tests.unit_tests)
|
|
for line in lines:
|
|
print(line)
|