Skip to content

Commit

Permalink
move stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed Nov 22, 2024
1 parent dd27da7 commit 64680ca
Show file tree
Hide file tree
Showing 13 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ fn options(#[default("simple-example")] project: String) -> Options {
// copy pixi.toml and pixi.lock to temporary location
let pixi_toml = output_dir.path().join("pixi.toml");
let pixi_lock = output_dir.path().join("pixi.lock");
std::fs::copy(format!("examples/{}/pixi.toml", project), &pixi_toml).unwrap();
std::fs::copy(format!("examples/{}/pixi.lock", project), &pixi_lock).unwrap();
std::fs::copy(format!("tests/resources/{}/pixi.toml", project), &pixi_toml).unwrap();
std::fs::copy(format!("tests/resources/{}/pixi.lock", project), &pixi_lock).unwrap();

let pixi_install = Command::new("pixi")
.arg("install")
Expand All @@ -38,7 +38,7 @@ fn options(#[default("simple-example")] project: String) -> Options {
Platform::Win64 => "win-64-pydantic-core-2.26.0-py313hf3b5b86_0.conda",
_ => panic!("Unsupported platform"),
};
let package = PathBuf::from(format!("examples/packages/{}", package));
let package = PathBuf::from(format!("tests/resources/packages/{}", package));
assert!(package.exists());
Options {
prefix,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 64680ca

Please sign in to comment.