Skip to content

Commit

Permalink
print directory info
Browse files Browse the repository at this point in the history
  • Loading branch information
dhirving committed Nov 15, 2023
1 parent ccbb6b8 commit b8f6857
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
@@ -1,5 +1,6 @@
import contextlib
import os
import subprocess
import tempfile
import unittest

Expand All @@ -16,6 +17,9 @@ def _run_server_docker():
MetricTestRepo(
root=temp_dir, configFile=os.path.join(TESTDIR, "../tests", "config/basic/butler.yaml")
)
print(temp_dir)
result = subprocess.run(["ls", "-l", temp_dir])
print(result.stdout)

port = 8080
butler_root = "/butler_root"
Expand Down

0 comments on commit b8f6857

Please sign in to comment.