Merge pull request #202 from robertbaldyga/dont-use-log-before-its-crated

tests: Don't use log before it's created
This commit is contained in:
Michał Mielewczyk 2019-11-27 13:24:02 +01:00 committed by GitHub
commit 8cef2b41b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,8 +26,7 @@ sys.path.append(plugins_dir)
try:
from test_wrapper import plugin as test_wrapper
except ImportError as e:
TestRun.LOGGER.info(str(e))
pass
print(e)
class OpencasPlugin(metaclass=Singleton):