diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2017-06-27 18:14:55 +0300 |
---|---|---|
committer | Juha Kosonen <juha.kosonen@nokia.com> | 2017-06-27 18:54:25 +0300 |
commit | 38251180e71629a792c412a7d357a1e59b5eb295 (patch) | |
tree | 326adab36da3721a263379c4461cb7726f929cf0 /functest/tests/unit/openstack/rally/test_rally.py | |
parent | 4ef95523104ea0efc20869b7522e12c6d1b89613 (diff) |
Remove Rally requests scenario
HttpRequests scenario is not directly related to OpenStack and not
supported by Rally in https environment.
Change-Id: I2e91d129d82dfaba62eca25e3e4890ff54f52ac6
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
Diffstat (limited to 'functest/tests/unit/openstack/rally/test_rally.py')
-rw-r--r-- | functest/tests/unit/openstack/rally/test_rally.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/functest/tests/unit/openstack/rally/test_rally.py b/functest/tests/unit/openstack/rally/test_rally.py index b9e78616..8845f660 100644 --- a/functest/tests/unit/openstack/rally/test_rally.py +++ b/functest/tests/unit/openstack/rally/test_rally.py @@ -53,14 +53,6 @@ class OSRallyTesting(unittest.TestCase): task_args = self.rally_base._build_task_args('test_file_name') self.assertEqual(task_args['netid'], '') - def test_build_task_args_missing_auth_url(self): - CONST.__setattr__('OS_AUTH_URL', None) - with mock.patch('functest.opnfv_tests.openstack.rally.rally.' - 'os_utils.get_external_net', - return_value='test_floating_network'): - task_args = self.rally_base._build_task_args('test_file_name') - self.assertEqual(task_args['request_url'], '') - def check_scenario_file(self, value): yaml_file = 'opnfv-{}.yaml'.format('test_file_name') if yaml_file in value: |