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
56 changes: 56 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ widens instead of guessing, and never silently skips a test that could fail.
| Ecosystem | Command |
|---|---|
| JS / TS | `npm i -D testless-cli` (bin: `testless`) |
| Go | `curl -fsSL https://testless.itaywol.tools/install.sh \| sh` |
| Go | `curl -fsSL https://testless.itaywol.tools/install.sh \| sh` or `brew install itaywol/testless/testless` |
| Rust | `cargo binstall testless` or `cargo install testless` |

Prebuilt binaries on [Releases](https://github.com/itaywol/testless/releases). Nix flake repo: `nix develop`.
Expand Down Expand Up @@ -64,6 +64,15 @@ testless select --from origin/main --format args > cmds.txt || RUN_ALL=1

Live recordings of these runs rotate on [the website](https://testless.itaywol.tools).

## Config

Optional `testless.toml` at the repo root, for the cases static inference can't cover:

```toml
always-run = ["tests/smoke/**", "**/*.e2e.test.ts"] # always select these tests
ignore = ["**/generated/**", "*.pb.go"] # never index these files
```

## Languages

TypeScript / JavaScript (vitest, jest `-t` patterns) · Go (`go test -run`) · Rust (`cargo test`)
Expand Down
Loading
Loading