final fixes

This commit is contained in:
damirka 2021-04-26 19:37:29 +03:00
parent 30fc5b97ae
commit 296b92acf6
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ jobs:
- setup_environment: - setup_environment:
cache_key: leo-stable-cache cache_key: leo-stable-cache
- run: - run:
name: Run tests name: Build and run tests
no_output_timeout: 30m no_output_timeout: 30m
command: cargo test --all command: cargo test --all
- persist_to_workspace: - persist_to_workspace:
@ -69,7 +69,7 @@ jobs:
- setup_environment: - setup_environment:
cache_key: leo-nightly-cache cache_key: leo-nightly-cache
- run: - run:
name: Run tests name: Build and test
no_output_timeout: 30m no_output_timeout: 30m
command: cargo test --all command: cargo test --all
- clear_environment: - clear_environment:

View File

@ -23,7 +23,7 @@ use structopt::StructOpt;
use tracing::span::Span; use tracing::span::Span;
/// Create new Leo project /// Create new Leo project
#[derive(StructOpt, Debug, PartialEq)] #[derive(StructOpt, Debug)]
#[structopt(setting = structopt::clap::AppSettings::ColoredHelp)] #[structopt(setting = structopt::clap::AppSettings::ColoredHelp)]
pub struct New { pub struct New {
#[structopt(name = "NAME", help = "Set package name")] #[structopt(name = "NAME", help = "Set package name")]