-
Notifications
You must be signed in to change notification settings - Fork 180
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
initial addition of integration test #804
Conversation
.github/workflows/rust.yml
Outdated
- name: Help | ||
run: pixi --help | ||
- name: Info | ||
run: pixi info | ||
- name: Install pixi | ||
run: pixi install -v | ||
- name: Test examples/polarify | ||
run: pixi run -v --manifest-path examples/polarify/pixi.toml test | ||
- name: Test examples/pypi | ||
# Skip windows until this error is solved: `× could not get artifact: Access is denied. (os error 5)` | ||
if: matrix.os != 'windows-latest' | ||
run: pixi run -v --manifest-path examples/pypi/pixi.toml test | ||
- name: Test examples/solve-groups | ||
run: | | ||
pixi run -v --manifest-path examples/solve-groups/pixi.toml -e min-py38 test | ||
pixi run -v --manifest-path examples/solve-groups/pixi.toml -e max-py310 test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldnt it make sense to just add a bash/nushell script to do this? That would also make it much easier to run locally.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh that is a good idea, as in put all the run scripts in a test_examples.sh
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah basically, although using a cross platform shell would be nicer ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bash is luckily cross platform in actions. Nushell would have needed to be installed and I hate pwsh
No description provided.