Skip to content

Commit

Permalink
added debugging logging
Browse files Browse the repository at this point in the history
  • Loading branch information
smythi93 committed Jul 25, 2024
1 parent b5db2f4 commit 0fffb58
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/sflkit/runners/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ def get_tests(
env=environ,
cwd=directory,
)
LOGGER.info(f"pytest collection finished with {process.returncode}")
LOGGER.info(f"stdout: {process.stdout}")
LOGGER.info(f"stderr: {process.stderr}")
if process.returncode != 0:
raise subprocess.CalledProcessError(
process.returncode, process.args, process.stdout, process.stderr
Expand Down

0 comments on commit 0fffb58

Please sign in to comment.