diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-03-07 14:28:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-07 14:28:00 +0000 |
commit | 0d9d218cff8155922e604e3f4787d5d32acacecb (patch) | |
tree | 9a3b5335c4919ed1f70153a7746032bcb0ba831b /functest | |
parent | 77287a7167fd74cd80a97828834134b7b75e65c1 (diff) | |
parent | f73bb0c60abc32d67dc6bc0a41ad923fb89aeb3d (diff) |
Merge "Bugfix: make security_scan authorized"
Diffstat (limited to 'functest')
-rwxr-xr-x | functest/opnfv_tests/features/security_scan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest/opnfv_tests/features/security_scan.py b/functest/opnfv_tests/features/security_scan.py index 2db44175..58f0ec74 100755 --- a/functest/opnfv_tests/features/security_scan.py +++ b/functest/opnfv_tests/features/security_scan.py @@ -17,8 +17,8 @@ class SecurityScan(base.FeatureBase): super(SecurityScan, self).__init__(project='securityscanning', case='security_scan', repo='dir_repo_securityscan') - self.cmd = ('bash {0} && ' + self.cmd = ('. {0}/stackrc && ' 'cd {1} && ' 'python security_scan.py --config config.ini && ' - 'cd -'.format(CONST.openstack_creds, + 'cd -'.format(CONST.dir_functest_conf, self.repo)) |