Skip to content

Commit

Permalink
more debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
dhirving committed Nov 16, 2023
1 parent b8f6857 commit 81e4228
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests_integration/test_docker_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ def _run_server_docker():
root=temp_dir, configFile=os.path.join(TESTDIR, "../tests", "config/basic/butler.yaml")
)
print(temp_dir)
result = subprocess.run(["ls", "-ld", temp_dir])
print(result.stdout)
print(result.stderr)
result = subprocess.run(["ls", "-l", temp_dir])
print(result.stdout)
print(result.stderr)

port = 8080
butler_root = "/butler_root"
Expand Down

0 comments on commit 81e4228

Please sign in to comment.