summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorbrotzeit <brotzeitmacher@gmail.com>2021-10-16 19:12:03 +0200
committerbrotzeit <brotzeitmacher@gmail.com>2021-10-16 19:35:47 +0200
commit9c2e06756d3678cdcaaa57ec01591083c5f1d2c4 (patch)
tree5d6683b1bb61ec085aab94bb8a98696b27a0afd6 /README.md
parent01969b0906309e40c05867f4c0c3a04c05493235 (diff)
downloadrust-mode-9c2e06756d3678cdcaaa57ec01591083c5f1d2c4.tar.gz
drop run_rust_emacs_tests.sh and use make test in ci
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/README.md b/README.md
index e2b3a6c..5cdb229 100644
--- a/README.md
+++ b/README.md
@@ -149,7 +149,7 @@ mode for integration with Cargo, Rust's package manager.
[cargo-mode](https://github.com/ayrat555/cargo-mode) is an Emacs minor mode which allows to dynamically select a Cargo command. The reasons behind this package can be found in [the post](https://www.badykov.com/emacs/2021/05/29/emacs-cargo-mode/).
## Rustic
-[rustic](https://github.com/brotzeit/rustic) is a fork of rust-mode,
+[rustic](https://github.com/brotzeit/rustic) is based on rust-mode,
extending it with other features such as integration with LSP and with flycheck.
@@ -157,7 +157,8 @@ extending it with other features such as integration with LSP and with flycheck.
## Tests
-The file `rust-mode-tests.el` contains tests that can be run via
-[ERT](http://www.gnu.org/software/emacs/manual/html_node/ert/index.html).
-You can use `run_rust_emacs_tests.sh` to run them in batch mode, if
-you set the environment variable EMACS to a program that runs emacs.
+Run elisp tests:
+
+``` bash
+make test
+```