Skip to content

Commit

Permalink
tests: Try to use python executable instead of python3
Browse files Browse the repository at this point in the history
python3 does not seem to exist on Windows/Appveyor
  • Loading branch information
jonnor committed Mar 6, 2019
1 parent 8055058 commit aa164e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_window_function.py
Expand Up @@ -10,7 +10,7 @@


def run_window_function(options): def run_window_function(options):
path = os.path.join(examples_dir, 'window-function.py') path = os.path.join(examples_dir, 'window-function.py')
args = ['python3', path] args = ['python', path]


for key, value in options.items(): for key, value in options.items():
args.append('--{}={}'.format(key, value)) args.append('--{}={}'.format(key, value))
Expand Down

0 comments on commit aa164e3

Please sign in to comment.