From ba432590eca6a24b5eab05d40d9b5df61eb4c374 Mon Sep 17 00:00:00 2001 From: Eric Zhuo Chen Date: Mon, 3 Apr 2023 09:59:21 +0800 Subject: [PATCH] Use cmdproxy to better deal with Windows --- python-pytest.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-pytest.el b/python-pytest.el index 968411c..1845aae 100644 --- a/python-pytest.el +++ b/python-pytest.el @@ -399,7 +399,7 @@ With a prefix ARG, allow editing." nil t)) (run-hooks 'python-pytest-setup-hook) (if (eq system-type 'windows-nt) - (make-comint-in-buffer "pytest" buffer "cmd" nil "/c" command) + (make-comint-in-buffer "pytest" buffer "cmdproxy" nil "/c" command) (make-comint-in-buffer "pytest" buffer "sh" nil "-c" command)) (run-hooks 'python-pytest-started-hook) (setq process (get-buffer-process buffer))