dev: use cargo nextest

https://github.com/nextest-rs/nextest/discussions/1510
This commit is contained in:
naskya 2024-05-20 18:32:26 +09:00
parent 2411320501
commit 847aa848f3
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C
3 changed files with 10 additions and 2 deletions

View file

@ -6,7 +6,7 @@
- git
- Node.js
- pnpm
- Rust toolchain
- Rust toolchain and [cargo-nextest](https://nexte.st/)
- Python 3
- Perl
- FFmpeg

View file

@ -40,6 +40,14 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
cargo --version
```
### Cargo nextest
Instructions can be found at [this page](https://nexte.st/book/pre-built-binaries).
```sh
curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
```
### PostgreSQL and PGroonga
Firefish requires PostgreSQL v12 or later. We recommend that you install v12.x for the same reason as Node.js.

View file

@ -28,7 +28,7 @@
"mocha": "pnpm --filter backend run mocha",
"test": "pnpm run test:ts && pnpm run test:rs",
"test:ts": "pnpm run mocha",
"test:rs": "cargo test",
"test:rs": "cargo test --doc && cargo nextest run",
"format": "pnpm run format:ts; pnpm run format:rs",
"format:ts": "pnpm -r --parallel run format",
"format:rs": "cargo fmt --all --",