Skip to content

Commit

Permalink
use python instead of python3 to run unittests
Browse files Browse the repository at this point in the history
sbourdeauducq committed Feb 16, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 16fbe31 commit 393de4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master.cfg
Original file line number Diff line number Diff line change
@@ -258,7 +258,7 @@ def addPythonUnittestSteps(factory, locks=default_locks,
factory.addStep(
ShellCommand(
name = 'python_unittest',
command = ['python3', '-m', 'unittest', 'discover', '-v', test_path],
command = ['python', '-m', 'unittest', 'discover', '-v', test_path],
description = 'testing',
descriptionDone = 'test',
descriptionSuffix = test_path if test_path != "." else "",

0 comments on commit 393de4a

Please sign in to comment.