[oe-commits] Corneliu Stoicescu : oeqa/utils/decorators.py: add import os

git at git.openembedded.org git at git.openembedded.org
Sat Aug 2 08:57:03 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: 5381e6cf6bf7143074800b2949bfa5331fdb6d47
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=5381e6cf6bf7143074800b2949bfa5331fdb6d47

Author: Corneliu Stoicescu <corneliux.stoicescu at intel.com>
Date:   Wed Jul 30 19:47:39 2014 +0300

oeqa/utils/decorators.py: add import os

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 at intel.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/lib/oeqa/utils/decorators.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/lib/oeqa/utils/decorators.py b/meta/lib/oeqa/utils/decorators.py
index 439e80a..a9e67ed 100644
--- a/meta/lib/oeqa/utils/decorators.py
+++ b/meta/lib/oeqa/utils/decorators.py
@@ -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



More information about the Openembedded-commits mailing list