Skip to content

Commit

Permalink
test output
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazhvera committed Feb 7, 2024
1 parent 4cb6ab0 commit 4045d15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/run_in_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ def make_windows_pfx_file(certificate_file_path, private_key_path, pfx_file_path
if os.path.isfile(copy_path[0] + ".key"):
os.remove(copy_path[0] + ".key")

test_ls_run = subprocess.run(args=["pwsh.exe", "ls"], shell=True, capture_output=True, text=True)
print("import out: " + str(test_ls_run.stdout))
print("import err: " + str(test_ls_run.stderr))
test_ls_run = subprocess.run(args=["pwsh.exe", "-o Text", "-Command", "{\"ls\"}"], shell=True, capture_output=True, text=True)
print("LS TEST out: " + str(test_ls_run.stdout))
print("LS TEST err: " + str(test_ls_run.stderr))


# Import the PFX into the Windows Certificate Store
Expand Down

0 comments on commit 4045d15

Please sign in to comment.