diff options
| author | Mattias EngdegÄrd | 2022-11-28 19:41:02 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-11-28 19:41:02 +0100 |
| commit | db042b7591ea9da5e169704e5b32bd99c4ea7adf (patch) | |
| tree | b921efc4160e5e4414fd18662abc5bebf6c89059 | |
| parent | 34fc42e502aa5dc07bbb4f228ccdfb2a55ec30ae (diff) | |
| download | emacs-db042b7591ea9da5e169704e5b32bd99c4ea7adf.tar.gz emacs-db042b7591ea9da5e169704e5b32bd99c4ea7adf.zip | |
Skip one python test case on macOS
* test/lisp/progmodes/python-tests.el (python-ffap-module-path-1):
This test fails with a standard macOS Python installation;
see bug#59477 and bug#25753.
| -rw-r--r-- | test/lisp/progmodes/python-tests.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el index f871b7bc7d9..3efc28c7edc 100644 --- a/test/lisp/progmodes/python-tests.el +++ b/test/lisp/progmodes/python-tests.el | |||
| @@ -4566,6 +4566,11 @@ import abc | |||
| 4566 | 4566 | ||
| 4567 | (ert-deftest python-ffap-module-path-1 () | 4567 | (ert-deftest python-ffap-module-path-1 () |
| 4568 | (skip-unless (executable-find python-tests-shell-interpreter)) | 4568 | (skip-unless (executable-find python-tests-shell-interpreter)) |
| 4569 | ;; Skip the test on macOS, since the standard Python installation uses | ||
| 4570 | ;; libedit rather than readline which confuses the running of an inferior | ||
| 4571 | ;; interpreter in this case (see bug#59477 and bug#25753). | ||
| 4572 | (skip-unless (not (eq system-type 'darwin))) | ||
| 4573 | (trace-function 'python-shell-output-filter) | ||
| 4569 | (python-tests-with-temp-buffer-with-shell | 4574 | (python-tests-with-temp-buffer-with-shell |
| 4570 | " | 4575 | " |
| 4571 | import abc | 4576 | import abc |