Skip to content

Commit 3068c3a

Browse files
Refactor pixi.toml by cleaning up commands
Removed redundant build and start commands and updated install-remote command.
1 parent 49f8449 commit 3068c3a

1 file changed

Lines changed: 4 additions & 14 deletions

File tree

pixi.toml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -68,24 +68,14 @@ default = { features = ["dev"], solve-group = "default" }
6868
fmt = "ruff format ."
6969
lint = "ruff check ."
7070
fix = "ruff check --fix . || true"
71+
# Paket — pixi-build-python varken `pixi build` tercih edilir
7172
build = "python -m build"
73+
# Çalıştırma
7274
start = "python -c 'import kececinumbers; print(kececinumbers.__version__)'"
75+
# Dokümantasyon
7376
serve = { cmd = "python -m http.server 8080", cwd = "docs" }
74-
test = "pytest -v" # artık depends-on ["install"] gerekmiyor
75-
install-remote = "pip install git+https://github.com/WhiteSymmetry/kececinumbers"
76-
77-
# Paket — pixi-build-python varken `pixi build` tercih edilir
78-
build = "python -m build"
79-
8077
# Geliştirme kurulumu ve test
8178
install = "pip install -e ."
82-
test = { depends-on = ["install"], cmd = "pytest -v" }
83-
84-
# Çalıştırma
85-
start = "python -c 'import kececinumbers; print(kececinumbers.__version__)'"
86-
87-
# Dokümantasyon
88-
serve = { cmd = "python -m http.server 8080", cwd = "docs" }
89-
79+
test = "pytest -v" # artık depends-on ["install"] gerekmiyor
9080
# Uzak sürüm kurulumu (CI/test amaçlı)
9181
install-remote = "pip install git+https://github.com/WhiteSymmetry/kececinumbers"

0 commit comments

Comments
 (0)