]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/utils/decorators.py: add import os
authorCorneliu Stoicescu <corneliux.stoicescu@intel.com>
Wed, 30 Jul 2014 16:47:39 +0000 (19:47 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 2 Aug 2014 08:25:33 +0000 (09:25 +0100)
An 'import os' was omitted here while testing the previous decorators using runtime tests that import the os module before this one. Unfortunately oe-selftest fails because of this missing import.

Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/lib/oeqa/utils/decorators.py

index 439e80a42b9f7ac85bc15dead8b1914d6f9f0dc8..a9e67ed863e6a1e0952f657477d1cf6d6a356d35 100644 (file)
@@ -6,6 +6,7 @@
 # Most useful is skipUnlessPassed which can be used for
 # creating dependecies between two test methods.
 
+import os
 import logging
 import sys
 import unittest