From f60517134a70b05f6c49bfe8a8783b725356188d Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 6 Jul 2023 13:41:57 -0400 Subject: [PATCH] Update owlbot.py --- owlbot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/owlbot.py b/owlbot.py index ce738f01..66ecdfe0 100644 --- a/owlbot.py +++ b/owlbot.py @@ -35,6 +35,7 @@ if clean_up_generated_samples: shutil.rmtree("samples/generated_samples", ignore_errors=True) clean_up_generated_samples = False + s.move([library], excludes=["**/gapic_version.py"]) s.remove_staging_dirs() @@ -53,4 +54,4 @@ # run format session for all directories which have a noxfile for noxfile in Path(".").glob("**/noxfile.py"): - s.shell.run(["nox", "-s", "format"], cwd=noxfile.parent, hide_output=False) + s.shell.run(["nox", "-s", "blacken"], cwd=noxfile.parent, hide_output=False)