Skip to content

Commit

Permalink
debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jan 18, 2024
1 parent bfbb15f commit 2162bd6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions integration_tests/bash_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def add_scripts(self, a_dir, prefix_len, test_file, exceptions):
:param dict(str,str) exceptions:
"""
# for some reason python 3.8 passes an empty string here
if not a_dir:
return
# if not a_dir:
# return
for a_script in os.listdir(a_dir):
script_path = os.path.join(a_dir, a_script)
if os.path.isdir(script_path) and not a_script.startswith("."):
Expand All @@ -56,6 +56,7 @@ def build_bash(self, exceptions):
integration_dir = os.path.dirname(class_file)
repository_dir = os.path.dirname(integration_dir)

print(class_file, integration_dir, repository_dir)
test_script = os.path.join(integration_dir, "pytest.bash")
header = os.path.join(integration_dir, "header.bash")
copyfile(header, test_script)
Expand Down

0 comments on commit 2162bd6

Please sign in to comment.