Skip to content

Commit

Permalink
fix CI issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wjo1212 committed Nov 22, 2017
1 parent a806ef8 commit 1898205
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from subprocess import check_output, CalledProcessError, STDOUT
from time import time
import sys
import os


def run_cmd(cmd):
Expand Down Expand Up @@ -44,7 +45,7 @@ def process_token(txt):


def run_test(cmd_file):
cli = sys.executable + ' ../aliyunlogcli/cli.py'
cli = sys.executable + '"' + os.path.abspath(' ../aliyunlogcli/cli.py') + '"'
cmd_list = process_token(open(cmd_file).read()).split('\n')
cmd_dict = OrderedDict()
pre_cmd = ''
Expand Down

0 comments on commit 1898205

Please sign in to comment.