Skip to content

Commit

Permalink
debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
rlxdev committed Nov 15, 2024
1 parent fffd955 commit 07ad4bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scubagoggles/Testing/Functional/SmokeTests/smoke_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ def test_scubagoggles_output(subjectemail):
subjectemail: The email address of a user for the service account
"""
try:
command: str = f"scubagoggles gws --subjectemail {subjectemail} --quiet"
command: str = f"scubagoggles -l d gws --subjectemail {subjectemail} --quiet"

# pylint: disable-next=subprocess-run-check
cp = subprocess.run(command,
shell=True,
capture_output = True,
encoding = 'utf-8')
print(f'command is {command}')
print(f'failure return code {cp.returncode}')
print(cp.stdout)
if cp.returncode:
print(f'command is {command}')
print(f'failure return code {cp.returncode}')
print(cp.stdout)
print(cp.stderr)
return
output_path = get_output_path()
Expand Down

0 comments on commit 07ad4bb

Please sign in to comment.