This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new fea1e97fef MINOR: [Dev][Archery][Integration] Remove debug prints
(#44140)
fea1e97fef is described below
commit fea1e97feff9b5071ec352f32219920368991fd9
Author: Sutou Kouhei <[email protected]>
AuthorDate: Tue Sep 17 10:56:05 2024 +0900
MINOR: [Dev][Archery][Integration] Remove debug prints (#44140)
### Rationale for this change
#44099 included debug prints.
### What changes are included in this PR?
Remove debug prints.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
dev/archery/archery/integration/runner.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/dev/archery/archery/integration/runner.py
b/dev/archery/archery/integration/runner.py
index 117b5979a1..22cef46d0c 100644
--- a/dev/archery/archery/integration/runner.py
+++ b/dev/archery/archery/integration/runner.py
@@ -586,9 +586,7 @@ def run_all_tests(with_cpp=True, with_java=True,
with_js=True,
run_c_data=False, tempdir=None, target_languages="",
**kwargs):
tempdir = tempdir or tempfile.mkdtemp(prefix='arrow-integration-')
- print(["before", target_languages])
target_languages = list(filter(len, target_languages.split(",")))
- print(["after", target_languages])
testers: List[Tester] = []
other_testers: List[Tester] = []