Skip to content

Commit

Permalink
Merge branch 'main' into bruno/test-pop-test-contract
Browse files Browse the repository at this point in the history
  • Loading branch information
brunopgalvao committed Mar 21, 2024
2 parents 2dc6711 + 81f3ce2 commit 6add2a8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 70 deletions.
63 changes: 0 additions & 63 deletions Cargo.lock

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

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ edition = "2021"
name = "pop"
path = "src/main.rs"

[dev-dependencies]
tempdir = "0.3.7"

[dependencies]
anyhow = "1.0"
askama = "0.12"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ An all-in-one tool for Polkadot development.
You can install Pop CLI as follows:

```shell
cargo install --git https://github.com/r0gue-io/pop-cli
cargo install --locked --git https://github.com/r0gue-io/pop-cli
```

> :information_source: A [crates.io](https://crates.io/crates/pop-cli) version will be available soon!
Expand Down Expand Up @@ -203,4 +203,4 @@ pop up parachain -f ./tests/zombienet.toml -p https://github.com/r0gue-io/pop-no
```

> :information_source: Pop CLI will automatically source the necessary polkadot binaries. Currently, these will be built
> if on a non-linux system.
> if on a non-linux system.
3 changes: 1 addition & 2 deletions src/engines/parachain_engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,10 @@ pub fn build_parachain(path: &Option<PathBuf>) -> anyhow::Result<()> {
mod tests {
use super::*;
use std::{env::current_dir, fs};
use tempdir;

#[test]
fn test_instantiate_template_dir_base() -> Result<(), Box<dyn std::error::Error>> {
let temp_dir = tempdir::TempDir::new("base_template")?;
let temp_dir = tempfile::tempdir()?;
let config = Config {
symbol: "DOT".to_string(),
decimals: 18,
Expand Down

0 comments on commit 6add2a8

Please sign in to comment.