Skip to content

Commit 4f87f90

Browse files
committed
package postprocessing files
1 parent 605033f commit 4f87f90

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

library_generation/setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010
'library_generation': '.',
1111
},
1212
package_data={
13-
'library_generation': ['*/*.sh', 'templates/*.j2'],
13+
'library_generation': [
14+
'*.sh',
15+
'templates/*.j2',
16+
'gapic-generator-java-wrapper',
17+
'requirements.*',
18+
'owlbot/src/requirements.*',
19+
'owlbot/bin/*.sh',
20+
'owlbot/templates/**/*.j2',
21+
],
1422
}
1523
)

library_generation/test/integration_tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ def test_generate_repo(self):
108108
@classmethod
109109
def __pull_repo_to(cls, dest: Path, repo: str, committish: str):
110110
repo_url = f"{repo_prefix}/{repo}"
111+
print(f'Cloning repository {repo_url}')
111112
repo = Repo.clone_from(repo_url, dest)
112113
repo.git.checkout(committish)
113114

0 commit comments

Comments
 (0)