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

fix: test failure on riscv64 #1045

Merged
merged 1 commit into from
Mar 25, 2024
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
6 changes: 3 additions & 3 deletions src/task/task_environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ mod tests {
[project]
name = "foo"
channels = ["foo"]
platforms = ["linux-64", "osx-arm64", "win-64", "osx-64"]
platforms = ["linux-64", "osx-arm64", "win-64", "osx-64", "linux-riscv64"]

[tasks]
test = "cargo test"
Expand All @@ -252,7 +252,7 @@ mod tests {
[project]
name = "foo"
channels = ["foo"]
platforms = ["linux-64", "osx-arm64", "win-64", "osx-64"]
platforms = ["linux-64", "osx-arm64", "win-64", "osx-64", "linux-riscv64"]

[tasks]
test = "pytest"
Expand Down Expand Up @@ -319,7 +319,7 @@ mod tests {
[project]
name = "foo"
channels = ["foo"]
platforms = ["linux-64", "osx-arm64", "win-64", "osx-64"]
platforms = ["linux-64", "osx-arm64", "win-64", "osx-64", "linux-riscv64"]

[tasks]
bla = "echo foo"
Expand Down
4 changes: 2 additions & 2 deletions src/task/task_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ mod test {
[project]
name = "pixi"
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "win-64", "osx-arm64"]
platforms = ["linux-64", "osx-64", "win-64", "osx-arm64", "linux-riscv64"]
"#,
&["echo bla"],
None,
Expand Down Expand Up @@ -538,7 +538,7 @@ mod test {
[project]
name = "pixi"
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "win-64", "osx-arm64"]
platforms = ["linux-64", "osx-64", "win-64", "osx-arm64", "linux-riscv64"]

[tasks]
foo = "echo foo"
Expand Down
Loading