Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
--exclude rustpython-venvlauncher
  • Loading branch information
youknowone committed Feb 3, 2026
commit 400696c0fdd63f578366bf8ed06ff756ce5430b9
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ rm -r target/debug/build/rustpython-* && find . | grep -E "\.pyc$" | xargs rm -r

```bash
# Run Rust unit tests
cargo test --workspace --exclude rustpython_wasm
cargo test --workspace --exclude rustpython_wasm --exclude rustpython-venvlauncher

# Run Python snippets tests (debug mode recommended for faster compilation)
cargo run -- extra_tests/snippets/builtin_bytes.py
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ $ pytest -v
Rust unit tests can be run with `cargo`:

```shell
$ cargo test --workspace --exclude rustpython_wasm
$ cargo test --workspace --exclude rustpython_wasm --exclude rustpython-venvlauncher
```
Comment on lines 67 to 69
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Remove the shell prompt to satisfy markdownlint MD014.

The $ prompt in a fenced block without output triggers MD014. Consider removing it.

Suggested edit
-$ cargo test --workspace --exclude rustpython_wasm --exclude rustpython-venvlauncher
+cargo test --workspace --exclude rustpython_wasm --exclude rustpython-venvlauncher
🧰 Tools
🪛 markdownlint-cli2 (0.20.0)

[warning] 68-68: Dollar signs used before commands without showing output

(MD014, commands-show-output)

🤖 Prompt for AI Agents
In `@DEVELOPMENT.md` around lines 67 - 69, The fenced code block contains a shell
prompt character ("$ ") before the command string "cargo test --workspace
--exclude rustpython_wasm --exclude rustpython-venvlauncher" which triggers
markdownlint MD014; edit the fenced block to remove the leading "$ " so it
contains just the plain command line (i.e., "cargo test --workspace --exclude
rustpython_wasm --exclude rustpython-venvlauncher") to satisfy the lint rule.


Python unit tests can be run by compiling RustPython and running the test module:
Expand Down