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.
15 lines
365 B
Python
15 lines
365 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import system_tests
|
|
import os
|
|
import unittest
|
|
|
|
bSkip=not (os.path.isfile(system_tests.unit_tests) or os.path.isfile(system_tests.unit_tests + '.exe'))
|
|
if bSkip:
|
|
msg='*** %s does not exist ***' % system_tests.unit_tests
|
|
print(msg)
|
|
raise unittest.SkipTest(msg)
|
|
|
|
system_tests.BT.runTest(system_tests.unit_tests,raw=True)
|
|
print('')
|