From 0048d19d430705a56497cd82b04d589c4d4862da Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Tue, 9 Jan 2024 16:35:18 +0100 Subject: [PATCH] Use 1 thread for tests to prevent signal handler clashes in pty tests --- .cargo/config.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..8af59dd --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[env] +RUST_TEST_THREADS = "1"