From 5381e6cf6bf7143074800b2949bfa5331fdb6d47 Mon Sep 17 00:00:00 2001 From: Corneliu Stoicescu Date: Wed, 30 Jul 2014 19:47:39 +0300 Subject: 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 Signed-off-by: Saul Wold --- meta/lib/oeqa/utils/decorators.py | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/lib/oeqa') diff --git a/meta/lib/oeqa/utils/decorators.py b/meta/lib/oeqa/utils/decorators.py index 439e80a42b..a9e67ed863 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 -- cgit 1.2.3-korg