-
Notifications
You must be signed in to change notification settings - Fork 202
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
Feat/test harness #138
Merged
Merged
Feat/test harness #138
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
898510b
feat: initial version of test-harness
tdejager 9aee63a
feat: run in test harness
tdejager 7cd9bdf
Merge branch 'main' into feat/test-harness
tdejager 877c5f1
Merge branch 'main' into feat/test-harness
tdejager 709aa3e
feat: added convenience method for run output
tdejager dd59d75
fix: add some comments
tdejager d22153c
Merge branch 'main' into feat/test-harness
tdejager 7b53199
feat: put integration test behind a feature flag
tdejager 6dc2c7d
fix: typo, should be --features
tdejager 48d1339
Merge remote-tracking branch 'upstream/main' into feat/test-harness
baszalmstra c5bf26e
fix: fmt
tdejager d5563c9
Merge branch 'main' into feat/test-harness
tdejager 0ea7ff4
fix: set XDG_CACHE_HOME
baszalmstra 6eaa87a
fix: use cross to pass through cache volume
baszalmstra f11431d
fix: windows test
baszalmstra 39637c4
fix: ensure cache directory exists
baszalmstra 7a9131b
fix: workflow
baszalmstra b812f5e
fix: mount in right directory
baszalmstra 3993cd1
fix: also passthrough variable
baszalmstra 7bd28ba
wip: changing interface
tdejager 9608ddb
feat: add manifest-path to shell command
ruben-arts 73815f8
feat: remove use of env_current_dir
tdejager b3c73f8
fix: remove dbg
tdejager a952de3
Add help to shell command
ruben-arts bf22696
Add changelog
ruben-arts 797fb50
bump: bump versions to v0.0.4
ruben-arts 92becc4
fix pixi.toml project name on init (#144)
ruben-arts 684a351
fix: change api of pixi controller
tdejager 2ea2930
Merge branch 'main' into feat/test-harness
tdejager File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[target.x86_64-unknown-linux-musl.env] | ||
volumes = [ | ||
"XDG_CACHE_HOME", | ||
] | ||
passthrough = [ | ||
"XDG_CACHE_HOME", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
pub mod cli; | ||
pub mod command; | ||
pub mod config; | ||
pub mod consts; | ||
pub mod environment; | ||
pub mod prefix; | ||
pub mod progress; | ||
pub mod project; | ||
pub mod repodata; | ||
pub mod report_error; | ||
pub mod util; | ||
pub mod virtual_packages; | ||
|
||
pub use project::Project; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
is this cleared up now?