Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeWang1127 committed Sep 17, 2024
1 parent d9bd2df commit b5491c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library_generation/generate_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def generate_from_yaml(
)
shutil.copytree(api_definition_path, repo_config.output_folder, dirs_exist_ok=True)
print(f"List files in {repo_config.output_folder}")
os.listdir(repo_config.output_folder)
print(os.listdir(repo_config.output_folder))

for library_path, library in repo_config.get_libraries().items():
print(f"generating library {library.get_library_name()}")
Expand Down
2 changes: 1 addition & 1 deletion library_generation/test/integration_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def __copy_api_definition(cls, committish: str) -> str:
shutil.copytree(f"{repo_dest}/grafeas", api_temp_dir, dirs_exist_ok=True)
shutil.rmtree(repo_dest)
print(f"List files and dirs in {api_temp_dir}")
os.listdir(api_temp_dir)
print(os.listdir(api_temp_dir))
return api_temp_dir

@classmethod
Expand Down

0 comments on commit b5491c5

Please sign in to comment.