Skip to content

Commit

Permalink
Fix empty string case
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Sep 13, 2024
1 parent 1055eb3 commit 0567f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/archery/archery/integration/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +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-')
target_languages = target_languages.split(",")
target_languages = list(filter(len, target_languages.split(",")))

testers: List[Tester] = []
other_testers: List[Tester] = []
Expand Down

0 comments on commit 0567f1a

Please sign in to comment.