Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Oct 20, 2023
1 parent f10e7cb commit d54bdcc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 31 deletions.
40 changes: 13 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ crate-type = ['cdylib']
[dependencies]
extism-pdk = "0.3.4"
once_cell = "1.18.0"
proto_pdk = { version = "0.7.9" } # , path = "../../proto/crates/pdk" }
proto_pdk = { version = "0.7.9", path = "../../proto/crates/pdk" }
regex = "1.10.2"
serde = "1.0.189"

[dev-dependencies]
proto_pdk_test_utils = { version = "0.8.1" } # , path = "../../proto/crates/pdk-test-utils" }
proto_pdk_test_utils = { version = "0.8.1", path = "../../proto/crates/pdk-test-utils" }
starbase_sandbox = "0.1.11"
tokio = "1.33.0"

Expand Down
2 changes: 1 addition & 1 deletion src/proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub fn native_install(
"python-build",
[
input.context.version.as_str(),
input.context.install_dir.real_path().to_str().unwrap(),
input.install_dir.real_path().to_str().unwrap(),
]
);

Expand Down
2 changes: 1 addition & 1 deletion tests/versions_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ generate_resolve_versions_tests!("python-test", {
"2.3" => "2.3.7",
"3.10.1" => "3.10.1",
"3.10" => "3.10.13",
"3" => "3.11.5",
"3" => "3.12.0",
});

#[test]
Expand Down

0 comments on commit d54bdcc

Please sign in to comment.