Skip to content

Commit

Permalink
test in debug
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Nov 14, 2023
1 parent 43e5d7a commit b9a0914
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ci/run-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ cargo --version

case $TARGET in
cargo-build)
cargo build --release "$@"
cargo build "$@"
;;

test-general)
cargo test --workspace --release --features runtime-benchmarks,try-runtime --exclude runtime-integration-tests
cargo test --workspace --features runtime-benchmarks,try-runtime --exclude runtime-integration-tests
;;

test-integration)
cargo test --release --package runtime-integration-tests --features fast-runtime
cargo test --package runtime-integration-tests --features fast-runtime
;;

lint-fmt)
Expand Down
4 changes: 2 additions & 2 deletions docs/DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ and another one to verify how it works in a more real environment as a parachain
The following command will run the unit and integration tests:

```bash
cargo +nightly test --workspace --release --features runtime-benchmarks,try-runtime
cargo test --workspace --features runtime-benchmarks,try-runtime
```

### Environment tests
Expand Down Expand Up @@ -84,7 +84,7 @@ You can play with it from the parachain client, make transfers, inspect events,
## Linting
### Source code
Lint the source code with `cargo +nightly fmt`. This excludes certain paths (defined in `rustfmt.toml`) that we want to stay as close as possible to `paritytech/substrate` to simplify upgrading to new releases.
Lint the source code with `cargo fmt`. This excludes certain paths (defined in `rustfmt.toml`) that we want to stay as close as possible to `paritytech/substrate` to simplify upgrading to new releases.
### Cargo.toml files
1. Install [taplo](https://github.com/tamasfe/taplo) with `cargo install taplo-cli`.
Expand Down

0 comments on commit b9a0914

Please sign in to comment.