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
2 changes: 2 additions & 0 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ permissions:
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

# When this workflow is queued, automatically cancel any previous running
# or pending jobs from the same branch
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ config.yaml*
htmlconv
assets

# Java / Maven
tests/java/target/

# AI assistants
CLAUDE.md
.claude
939 changes: 939 additions & 0 deletions pixi.lock

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,21 @@ dev-launch-remote = "uvicorn x2s3.app:app --host 0.0.0.0 --port 8000 --reload --
test-install = "pip install -e ."
test = { cmd = "python -m pytest --cov=x2s3 --cov-report html -W ignore::DeprecationWarning", depends-on = ["test-install"] }

[tool.pixi.feature.test-java.dependencies]
openjdk = ">=17"
maven = ">=3.9"

[tool.pixi.feature.test-java.tasks]
test-java = "mvn test -f tests/java/pom.xml"

[tool.pixi.feature.release.tasks]
pypi-build = "python -m build"
pypi-upload = "twine upload dist/*"

[tool.pixi.environments]
default = {features = [], solve-group = "default"}
test = {features = ["test"], solve-group = "default"}
test-java = {features = ["test-java"], solve-group = "default"}
release = {features = ["release"], solve-group = "default"}

[tool.pixi.dependencies]
Expand Down
Loading
Loading