Skip to content

Commit d387b6d

Browse files
committedFeb 15, 2018
work around PATH problem running wrong Python on Windows
1 parent 7c5c91e commit d387b6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎master.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def addPythonUnittestSteps(factory, locks=default_locks,
259259
factory.addStep(
260260
ShellCommand(
261261
name = 'python_unittest',
262-
command = ['python', '-m', 'unittest', 'discover', '-v', test_path],
262+
command = ['python3', '-m', 'unittest', 'discover', '-v', test_path],
263263
description = 'testing',
264264
descriptionDone = 'test',
265265
descriptionSuffix = test_path if test_path != "." else "",

0 commit comments

Comments
 (0)
Please sign in to comment.