diff options
author | Corneliu Stoicescu <corneliux.stoicescu@intel.com> | 2014-07-30 19:47:39 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-02 09:25:33 +0100 |
commit | 5381e6cf6bf7143074800b2949bfa5331fdb6d47 (patch) | |
tree | a3b5cf579fcf09084208a09a66552879066b1f9c /meta | |
parent | c39a1172afd783cedf4cb11f00e8f16d7a7ec22c (diff) | |
download | openembedded-core-5381e6cf6bf7143074800b2949bfa5331fdb6d47.tar.gz openembedded-core-5381e6cf6bf7143074800b2949bfa5331fdb6d47.tar.bz2 openembedded-core-5381e6cf6bf7143074800b2949bfa5331fdb6d47.zip |
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@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/utils/decorators.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |