diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-05-20 11:57:35 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-05-20 11:59:34 +0200 |
commit | 8bf944f3c3b2160b2d2d47647fb6c97f9e133a88 (patch) | |
tree | 0b7c3daa06ffb6d28c6a91dcbe5b0c1707111d60 /functest/tests | |
parent | 3ca4ed03be7930a370e9fb895c24aac635811b3b (diff) |
Add baro_tests as requirements
It also stops cloning it when building the docker container and updates
the related unit tests.
It bypasses the bug when importing collectd [1].
[1] https://jira.opnfv.org/browse/BAROMETER-79
Change-Id: Ie9f8ea2b3c95d6b1f5405d76b018cdcb62343a58
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/tests')
-rw-r--r-- | functest/tests/unit/features/test_barometer.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/functest/tests/unit/features/test_barometer.py b/functest/tests/unit/features/test_barometer.py index c6512615..8c2585d9 100644 --- a/functest/tests/unit/features/test_barometer.py +++ b/functest/tests/unit/features/test_barometer.py @@ -16,9 +16,8 @@ import unittest import mock from functest.core import testcase -sys.modules['baro_tests'] = mock.Mock() # noqa -# pylint: disable=wrong-import-position -from functest.opnfv_tests.features import barometer +with mock.patch('functest.utils.functest_utils.get_parameter_from_yaml'): + from functest.opnfv_tests.features import barometer class BarometerTesting(unittest.TestCase): |