Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Key commands

* Compile/lint: make build
* Test: make test
* Install deps: make install
3 changes: 3 additions & 0 deletions test/ess-mode-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
(require 'test-helper)
(require 'ess-r-mode)

;; Prevent flymake from warning about R not being installed
(setq ess-use-flymake nil)

(ert-deftest ess-r-mode-dot-tilde-operator ()
(th-fixtures #'ess-r-mode
(th-type "Species~.")
Expand Down
4 changes: 4 additions & 0 deletions test/python-mode-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
(require 'electric-operator)
(require 'test-helper)

;; Suppress noisy "Can't guess indent offset" messages from empty test buffers
(require 'python)
(setq python-indent-guess-indent-offset-verbose nil)

(ert-deftest python-dont-modify-string-literal ()
(th-fixtures #'python-mode
(th-type "'var+foo-1'")
Expand Down
Loading