Skip to content

Commit

Permalink
Remove -x flag
Browse files Browse the repository at this point in the history
  • Loading branch information
zsinx6 committed Jun 1, 2021
1 parent ed026d3 commit 8ccafb4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dojo_toolkit/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,11 @@ def _run_doctest(self):
class PytestTestRunner(LocalTestRunner):
def _run_doctest(self):
result = subprocess.run(
["python -m pytest -x" + self.code_path + "/*.py"],
["python -m pytest " + self.code_path + "/*.py"],
capture_output=True,
shell=True,
encoding="utf-8"
)
breakpoint()

return {
'is_success': result.returncode == 0,
Expand Down

0 comments on commit 8ccafb4

Please sign in to comment.