aboutsummaryrefslogtreecommitdiffstats
path: root/qtip/cli/commands/cmd_run.py
diff options
context:
space:
mode:
Diffstat (limited to 'qtip/cli/commands/cmd_run.py')
-rw-r--r--qtip/cli/commands/cmd_run.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qtip/cli/commands/cmd_run.py b/qtip/cli/commands/cmd_run.py
index d1b96d4f..56d416ab 100644
--- a/qtip/cli/commands/cmd_run.py
+++ b/qtip/cli/commands/cmd_run.py
@@ -9,8 +9,9 @@
import click
+import os
@click.command('run', help='Run performance tests')
def cli():
- pass
+ os.system('ansible-playbook {}/run.yml'.format(os.getcwd()))