Skip to content
Snippets Groups Projects
Commit bee98d70 authored by Nathan Wilcox's avatar Nathan Wilcox
Browse files

DEV-44838 - Add the string "DEV-44838" to assertion failures to future devs...

DEV-44838 - Add the string "DEV-44838" to assertion failures to future devs understand preconditions on windows run().
parent dd7840aa
No related branches found
No related tags found
No related merge requests found
......@@ -586,7 +586,7 @@ def get_build_cmd(self):
def run(self, command, name=None, retry_on=None, retries=1):
'''Run a program. If the program fails, raise an exception.'''
assert name is not None, 'On windows an executable path must be given in name.'
assert name is not None, 'On windows an executable path must be given in name. [DEV-44838]'
if os.path.isfile(name):
path = name
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment