mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
style: Fix typo in test file extension check
This commit is contained in:
parent
e3f0a67584
commit
f36f2fdea2
1 changed files with 1 additions and 1 deletions
|
@ -790,7 +790,7 @@ def run_unit_tests(testdir, history_fname, test_files):
|
|||
timeout = 60
|
||||
|
||||
# Choose test command based on test file extensions
|
||||
is_rust = any(Path(f).suffix == '.rs' for f in test_files)
|
||||
is_rust = any(Path(f).suffix == ".rs" for f in test_files)
|
||||
command = "cargo test -- --include-ignored".split() if is_rust else ["pytest"]
|
||||
print(" ".join(command))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue