From 559d5a9e981d8531c6369e90fffce46189588afe Mon Sep 17 00:00:00 2001 From: Haifeng Jin <5476582+haifeng-jin@users.noreply.github.com> Date: Fri, 22 Sep 2023 12:49:24 -0700 Subject: [PATCH] Fix CI for PyPI upload (#942) --- pip_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pip_build.py b/pip_build.py index e42c8debc..f4a56c9b4 100644 --- a/pip_build.py +++ b/pip_build.py @@ -16,7 +16,7 @@ def ignore_files(_, filenames): - return [f for f in filenames if f.endswith("_test.py")] + return [f for f in filenames if "test" in f] def build():