Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-44300: [Integration][Archery] Don't import unused testers #44301

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions dev/archery/archery/integration/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@
from . import cdata
from .scenario import Scenario
from .tester import Tester, CDataExporter, CDataImporter
from .tester_cpp import CppTester
from .tester_go import GoTester
from .tester_rust import RustTester
from .tester_java import JavaTester
from .tester_js import JSTester
from .tester_csharp import CSharpTester
from .tester_nanoarrow import NanoarrowTester
from .util import guid, printer
from .util import SKIP_C_ARRAY, SKIP_C_SCHEMA, SKIP_FLIGHT, SKIP_IPC
from ..utils.logger import group as group_raw
Expand Down Expand Up @@ -603,24 +596,31 @@ def append_tester(implementation, tester):
other_testers.append(tester)

if with_cpp:
from .tester_cpp import CppTester
append_tester("cpp", CppTester(**kwargs))

if with_java:
from .tester_java import JavaTester
append_tester("java", JavaTester(**kwargs))

if with_js:
from .tester_js import JSTester
append_tester("js", JSTester(**kwargs))

if with_csharp:
from .tester_csharp import CSharpTester
append_tester("csharp", CSharpTester(**kwargs))

if with_go:
from .tester_go import GoTester
append_tester("go", GoTester(**kwargs))

if with_nanoarrow:
from .tester_nanoarrow import NanoarrowTester
append_tester("nanoarrow", NanoarrowTester(**kwargs))

if with_rust:
from .tester_rust import RustTester
append_tester("rust", RustTester(**kwargs))

static_json_files = get_static_json_files()
Expand Down
Loading