Skip to content

Commit

Permalink
add python -m to command
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed Aug 1, 2020
1 parent b6943d7 commit 559c128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_debugger/test_networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
def server():
"""Start dashmips server."""
if SHOULD_START_SERVER:
debugger = Popen(split("dashmips debug -i localhost -l tests/test_mips/smallest.mips"))
debugger = Popen(split("python -m dashmips debug -i localhost -l tests/test_mips/smallest.mips"))
assert debugger.returncode is None, "dashmips exited before we could test"
time.sleep(0.2) # sleep so we can connect
return debugger
Expand Down

0 comments on commit 559c128

Please sign in to comment.