diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-07-04 07:46:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-04 07:46:50 +0000 |
commit | 2e6b361f4752b4ba5d6f03b469b0983b7b245630 (patch) | |
tree | e0c09f20162dfe626cf85639adb468aa613f2038 /functest/cli/commands/cli_tier.py | |
parent | c14a40a88ff496f981e61837f605027e65b2c345 (diff) | |
parent | 0ead7c9e03034bbb40b68a468a6deaa339b0364e (diff) |
Merge "Update cli commands to call console scripts"
Diffstat (limited to 'functest/cli/commands/cli_tier.py')
-rw-r--r-- | functest/cli/commands/cli_tier.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/functest/cli/commands/cli_tier.py b/functest/cli/commands/cli_tier.py index 48e9f542..9b2e60ba 100644 --- a/functest/cli/commands/cli_tier.py +++ b/functest/cli/commands/cli_tier.py @@ -68,6 +68,5 @@ class CliTier(object): click.echo("Functest environment is not ready. " "Run first 'functest env prepare'") else: - cmd = ("python %s %s -t %s" % (pkg_resources.resource_filename( - 'functest', 'ci/run_tests.py'), flags, tiername)) + cmd = "run_tests {}-t {}".format(flags, tiername) ft_utils.execute_command(cmd) |