Skip to content

Commit

Permalink
fix: ci with non released feature in pixi.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-arts committed Apr 30, 2024
1 parent 952cbf3 commit e105d5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ deploy-dev = "mike deploy --push dev devel"

[feature.schema.tasks]
generate-schema = { cmd = "python model.py > schema.json", cwd = "schema" }
test-schema = { cmd = "pytest -s", depends-on = "generate-schema", cwd = "schema" }
# Using deprecated `depends_on` to avoid conflicts in ci. Changes after release.
test-schema = { cmd = "pytest -s", depends_on = "generate-schema", cwd = "schema" }
toml-lint = "taplo lint --verbose **/pixi.toml"
toml-format = "taplo fmt **/pixi.toml"

Expand Down

0 comments on commit e105d5c

Please sign in to comment.