Skip to content

Commit

Permalink
Use idiom
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Sep 18, 2024
1 parent 2ef61c3 commit 4be422f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/archery/archery/integration/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,8 @@ def run_all_tests(with_cpp=True, with_java=True, with_js=True,
run_c_data=False, tempdir=None, target_implementations="",
**kwargs):
tempdir = tempdir or tempfile.mkdtemp(prefix='arrow-integration-')
target_implementations = list(filter(len, target_implementations.split(",")))
target_implementations = \
target_implementations.split(",") if target_implementations else []

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

0 comments on commit 4be422f

Please sign in to comment.