Skip to content

Commit 9c2e067

Browse files
committed
drop run_rust_emacs_tests.sh and use make test in ci
1 parent 01969b0 commit 9c2e067

File tree

3 files changed

+9
-58
lines changed

3 files changed

+9
-58
lines changed

.github/workflows/test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,7 @@ jobs:
2828
version: ${{ matrix.emacs_version }}
2929

3030
- uses: actions/checkout@v1
31+
3132
- name: Run tests
32-
run: './run_rust_emacs_tests.sh'
33+
run: |
34+
make test

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,16 @@ mode for integration with Cargo, Rust's package manager.
149149
[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/).
150150

151151
## Rustic
152-
[rustic](https://github.com/brotzeit/rustic) is a fork of rust-mode,
152+
[rustic](https://github.com/brotzeit/rustic) is based on rust-mode,
153153
extending it with other features such as integration with LSP and with flycheck.
154154

155155

156156
# For package maintainers
157157

158158
## Tests
159159

160-
The file `rust-mode-tests.el` contains tests that can be run via
161-
[ERT](http://www.gnu.org/software/emacs/manual/html_node/ert/index.html).
162-
You can use `run_rust_emacs_tests.sh` to run them in batch mode, if
163-
you set the environment variable EMACS to a program that runs emacs.
160+
Run elisp tests:
161+
162+
``` bash
163+
make test
164+
```

run_rust_emacs_tests.sh

-52
This file was deleted.

0 commit comments

Comments
 (0)