Skip to content

Commit

Permalink
fix: test failure on riscv64 (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
hack3ric authored Mar 25, 2024
1 parent 6e42ab0 commit 999db88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit 999db88

Please sign in to comment.