Configure keybindings to run Python tests

This commit is contained in:
Ohad Livne 2025-06-04 22:47:26 +03:00
parent 0c60b1ede1
commit 0b5164ec6c
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

@ -248,8 +248,12 @@
(use-package python (use-package python
:bind (:map python-mode-map :bind (:map python-mode-map
("C-c C-p" . nil) ("C-c C-p" . nil)
("C-c C-l" . nil)) ("C-c C-l" . nil)
:hook (python-mode . load-python-env)) ("C-c t" . elpy-test))
:hook (python-mode . load-python-env)
:config
(load "python-tests.el")
)
;; Jupyter notebook integration ;; Jupyter notebook integration
(use-package ein (use-package ein