From: Corneliu Stoicescu Date: Wed, 30 Jul 2014 16:47:39 +0000 (+0300) Subject: oeqa/utils/decorators.py: add import os X-Git-Tag: 2015-4~2108 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5381e6cf6bf7143074800b2949bfa5331fdb6d47;p=openembedded-core.git 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 --- 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