We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51ded7d commit 7e8acc0Copy full SHA for 7e8acc0
python-pytest.el
@@ -399,7 +399,10 @@ With a prefix ARG, allow editing."
399
'python-pdbtrack-comint-output-filter-function
400
nil t))
401
(run-hooks 'python-pytest-setup-hook)
402
- (make-comint-in-buffer "pytest" buffer "sh" nil "-c" command)
+ (make-comint-in-buffer
403
+ "pytest" buffer
404
+ (if (eq system-type 'windows-nt) "cmdproxy" "sh")
405
+ nil "-c" command)
406
(run-hooks 'python-pytest-started-hook)
407
(setq process (get-buffer-process buffer))
408
(set-process-sentinel process #'python-pytest--process-sentinel))))
0 commit comments