From 69af44d50ef6fdceefff08446d915cc6b1fe2d50 Mon Sep 17 00:00:00 2001 From: Luca Bacci Date: Wed, 20 Nov 2024 10:00:51 +0100 Subject: [PATCH] run_single_test.py: skip setup_symlinks() call on Windows --- run_single_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_single_test.py b/run_single_test.py index b7c294269..23b175641 100755 --- a/run_single_test.py +++ b/run_single_test.py @@ -48,7 +48,7 @@ def main() -> None: if not is_windows(): scan_test_data_symlinks() - setup_symlinks() + setup_symlinks() setup_commands(args.backend) if not args.quick: detect_system_compiler(args)