Skip to content

Commit 9d0fe0e

Browse files
committed
Add new snapshots
1 parent e60e3d8 commit 9d0fe0e

3 files changed

+15
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
source: src/project_generator.rs
3+
expression: content
4+
---
5+
"@develop:\n maturin develop\n\n@install: && develop\n python -m pip install -r requirements-dev.txt\n\n@lint:\n echo cargo check\n just --justfile {{justfile()}} check\n echo cargo clippy\n just --justfile {{justfile()}} clippy\n echo cargo fmt\n just --justfile {{justfile()}} fmt\n echo mypy\n just --justfile {{justfile()}} mypy\n echo ruff linting\n just --justfile {{justfile()}} ruff\n echo ruff formatting\n just --justfile {{justfile()}} ruff-format\n\n@check:\n cargo check\n\n@clippy:\n cargo clippy --all-targets\n\n@fmt:\n cargo fmt --all -- --check\n\n@mypy:\n mypy .\n\n@ruff:\n ruff check . --fix\n\n@ruff-format:\n ruff format my_project tests\n\n@test:\n pytest\n"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
source: src/project_generator.rs
3+
expression: content
4+
---
5+
"@lint:\n echo mypy\n just --justfile {{justfile()}} mypy\n echo ruff\n just --justfile {{justfile()}} ruff\n echo ruff-format\n just --justfile {{justfile()}} ruff-format\n\n@mypy:\n poetry run mypy my_project tests\n\n@ruff:\n poetry run ruff check my_project tests\n\n@ruff-format:\n poetry run ruff format my_project tests\n\n@test:\n -poetry run pytest -x\n\n@install:\n poetry install\n"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
source: src/project_generator.rs
3+
expression: content
4+
---
5+
"@lint:\n echo mypy\n just --justfile {{justfile()}} mypy\n echo ruff\n just --justfile {{justfile()}} ruff\n echo ruff-format\n just --justfile {{justfile()}} ruff-format\n\n@mypy:\n poetry run mypy my_project tests\n\n@ruff:\n poetry run ruff check my_project tests\n\n@ruff-format:\n poetry run ruff format my_project tests\n\n@test:\n -poetry run pytest -x\n\n@install:\n poetry install\n"

0 commit comments

Comments
 (0)