Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Use pixi for backend tests #1331

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from

Conversation

glemaitre
Copy link
Member

Giving a try to pixi for the CI

Copy link
Contributor

github-actions bot commented Feb 15, 2025

Coverage Report for frontend

Status Category Percentage Covered / Total
🔵 Lines 81.82% 2193 / 2680
🔵 Statements 81.82% 2193 / 2680
🔵 Functions 50.56% 45 / 89
🔵 Branches 83.26% 194 / 233
File Coverage
File Stmts Branches Functions Lines Uncovered Lines
Changed Files
skore-ui/src/components/SimpleButton.vue 100% 100% 100% 100%
skore-ui/src/components/ToastNotification.vue 87.09% 68.75% 100% 87.09% 21, 32-33, 38-42
Generated in workflow #241 for commit 95bcc9b by the Vitest Coverage Report Action

Copy link
Contributor

github-actions bot commented Feb 15, 2025

Documentation preview @ 95bcc9b

Comment on lines +169 to +170
# 1. Support for Python versions be dropped 3 years after their initial release.
# 2. Support for core package dependencies be dropped 2 years after their initial
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
# 1. Support for Python versions be dropped 3 years after their initial release.
# 2. Support for core package dependencies be dropped 2 years after their initial
# 1. Support for Python versions will be dropped 3 years after their initial release.
# 2. Support for core package dependencies will be dropped 2 years after their initial

Copy link
Contributor

@auguste-probabl auguste-probabl left a comment

Choose a reason for hiding this comment

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

I find this super clean!

please revert the skore-ui lints to stay atomic

@glemaitre
Copy link
Member Author

Yep it is just a POC for the moment. I wanted to have this such that we have a starting point to speak with @auguste-probabl and @thomass-dev

Copy link
Contributor

@rouk1 rouk1 left a comment

Choose a reason for hiding this comment

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

I find the pixi DX very nice. I wont approve this PR as I know other people may have strong divergent opinion on this.

To me, to get this merge, you should delete the top level makefile as it is replaced by pixi scripts. And address (or not^^) my comment on non DOS-compatible command usage.

Too bad that pixi can't manage installing a javascript runtime...

Comment on lines +207 to +222
[tool.pixi.tasks]
clean-skore-ui = { cmd = "rm -rf skore-ui/dist/ && rm -rf skore/src/skore/ui/static/", cwd = "../" }
build-skore-ui = { cmd = "npm install && npm run build", cwd = "../skore-ui" }
move-skore-ui = { cmd = "mv skore-ui/dist/ skore/src/skore/ui/static/", cwd = "../" }
setup-skore-ui = { cmd = "echo 'Skore UI setup complete'", cwd = "../", depends-on = ["clean-skore-ui", "build-skore-ui", "move-skore-ui"] }

[tool.pixi.feature.doc.tasks]
build-docs = { cmd = "make html", cwd = "../sphinx" }
build-docs-quick = { cmd = "make html-noplot", cwd = "../sphinx" }
clean-docs = { cmd = "rm -rf build/ && rm -rf auto_examples/ && rm -rf reference/api/", cwd = "../sphinx" }

[tool.pixi.feature.lint.tasks]
lint = { cmd = "pre-commit install && pre-commit run -v --all-files --show-diff-on-failure", cwd = "../" }

[tool.pixi.feature.test.tasks]
tests = { cmd = "mkdir -p coverage && python -m pytest -n auto src/ tests/ --junitxml=coverage/coverage.xml --cov-config=pyproject.toml --cov | tee coverage/coverage.txt" }
Copy link
Contributor

Choose a reason for hiding this comment

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

Not sure if my comment is pertinent ^^
But... Using pixi as a task runner, allows to write this stuffs in python. Which make the repo windows friendly. Hence maybe we can avoid using rm, mv, mkdir, ...).

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes it is indeed one of the thing that I would like to have and indeed I did not make it DOS-compliant in my first pass.

I'm thinking that spin (https://github.com/scientific-python/spin) could help if we don't want to bother for some of the part :)

@thomass-dev
Copy link
Collaborator

I've just had a really quick look and i find it really more complex. I need to deep-dive into your PR and maybe we should have a pair-session :).

@auguste-probabl
Copy link
Contributor

auguste-probabl commented Mar 12, 2025

Now that I've seen what pip-compile.sh looks like I'd like to push for migrating to a robust solution like pixi or uv. The current solution doesn't work on NixOS, and I presume it won't work on Windows either. @glemaitre @thomass-dev Can we make a decision on this?

EDIT: Solved with uv in #1418

@thomass-dev
Copy link
Collaborator

thomass-dev commented Mar 12, 2025

robust

This works well outside NixOS 😉 .
I will make a PoC with uv, and see the difference.

@glemaitre
Copy link
Member Author

I will make a PoC with uv, and see the difference.

pixi is using uv when you declare pypi-dependencies. So I would avoid to do an additional PoC :). However, we can make some environment that are pure PyPI and some that are conda-forge to be sure that both works as expected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants