Skip to content

Commit e1de437

Browse files
committed
test
1 parent 5ccf1c6 commit e1de437

File tree

18 files changed

+23
-22
lines changed

18 files changed

+23
-22
lines changed

.github/workflows/build-earthly.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
env:
2525
RUST_LATEST_STABLE_VERSION: 1.75
2626
CARGO_TERM_COLOR: always
27-
RUSTFLAGS: -D warnings
27+
RUSTFLAGS: -Awarnings
2828
RUST_BACKTRACE: 1
2929
CARGO_INCREMENTAL: 0
3030
CARGO_FLAGS: --verbose --locked
@@ -78,4 +78,3 @@ jobs:
7878
- name: Build everything with Earthly
7979
run: |
8080
earthly --remote-cache=ghcr.io/${{ github.repository }}:cache +all
81-

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
env:
2525
RUST_LATEST_STABLE_VERSION: 1.75
2626
CARGO_TERM_COLOR: always
27-
RUSTFLAGS: -D warnings
27+
RUSTFLAGS: -Awarnings
2828
RUST_BACKTRACE: 1
2929
CARGO_INCREMENTAL: 0
3030
CARGO_FLAGS: --verbose --locked

.github/workflows/ci-tests-n-coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
RUST_LATEST_STABLE_VERSION: 1.75
1010
CARGO_TERM_COLOR: always
11-
RUSTFLAGS: -D warnings
11+
RUSTFLAGS: -Awarnings
1212
RUST_BACKTRACE: 1
1313
CARGO_INCREMENTAL: 0
1414
CARGO_FLAGS: --verbose --locked

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
env:
2323
RUST_LATEST_STABLE_VERSION: 1.75
2424
CARGO_TERM_COLOR: always
25-
RUSTFLAGS: -D warnings
25+
RUSTFLAGS: -Awarnings
2626
RUST_BACKTRACE: 1
2727
CARGO_INCREMENTAL: 0
2828
CARGO_FLAGS: --verbose --locked

src/chain-libs/.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ commands:
104104
- run:
105105
name: Build with << parameters.mode >>
106106
environment:
107-
RUSTFLAGS: -D warnings
107+
RUSTFLAGS: -Awarnings
108108
CARGO_INCREMENTAL: 0
109109
command: |
110110
cargo build << parameters.mode >> << parameters.cargo_behavior >>

src/chain-libs/.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
uses: actions-rs/cargo@v1
159159
continue-on-error: false
160160
env:
161-
RUSTFLAGS: -D warnings
161+
RUSTFLAGS: -Awarnings
162162
with:
163163
command: test
164164
args: >-
@@ -169,7 +169,7 @@ jobs:
169169
uses: actions-rs/cargo@v1
170170
continue-on-error: false
171171
env:
172-
RUSTFLAGS: -D warnings
172+
RUSTFLAGS: -Awarnings
173173
with:
174174
command: test
175175
args: >-
@@ -180,7 +180,7 @@ jobs:
180180
uses: actions-rs/cargo@v1
181181
continue-on-error: false
182182
env:
183-
RUSTFLAGS: -D warnings
183+
RUSTFLAGS: -Awarnings
184184
with:
185185
command: test
186186
args: >-
@@ -233,14 +233,14 @@ jobs:
233233
continue-on-error: false
234234
with:
235235
command: clippy
236-
args: --all-targets --all-features -- -D warnings
236+
args: --all-targets --all-features -- -Awarnings
237237

238238
- name: Run cargo clippy (all features)
239239
uses: actions-rs/cargo@v1
240240
continue-on-error: false
241241
with:
242242
command: clippy
243-
args: --all-features -- -D warnings
243+
args: --all-features -- -Awarnings
244244

245245
test_coverage:
246246
name: Test Coverage

src/chain-wallet-libs/.github/workflows/ci_checks.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
uses: actions-rs/cargo@v1
160160
with:
161161
command: clippy
162-
args: --all-features --all-targets -- -D warnings
162+
args: --all-features --all-targets -- -Awarnings
163163

164164
test-wasm:
165165
name: Wasm-pack test

src/jormungandr/.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
test_debug:
5555
executor: rust-stable
5656
environment:
57-
RUSTFLAGS: -D warnings
57+
RUSTFLAGS: -Awarnings
5858
CARGO_INCREMENTAL: 0
5959
steps:
6060
- test

src/jormungandr/.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
profile: debug
108108
toolchain: nightly
109109
env:
110-
RUSTFLAGS: -D warnings
110+
RUSTFLAGS: -Awarnings
111111
RUST_BACKTRACE: 1
112112
CARGO_FLAGS: --verbose --locked
113113
CARGO_INCREMENTAL: 0
@@ -254,7 +254,7 @@ jobs:
254254
uses: actions-rs/cargo@v1
255255
with:
256256
command: clippy
257-
args: --all-features --all-targets -- -D warnings
257+
args: --all-features --all-targets -- -Awarnings
258258

259259
fmt:
260260
name: Fmt

src/jormungandr/.github/workflows/test_evm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
profile: debug
108108
toolchain: nightly
109109
env:
110-
RUSTFLAGS: -D warnings
110+
RUSTFLAGS: -Awarnings
111111
RUST_BACKTRACE: 1
112112
CARGO_FLAGS: --verbose --locked
113113
CARGO_INCREMENTAL: 0

src/jormungandr/.github/workflows/test_networking.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
profile: release
108108
toolchain: nightly
109109
env:
110-
RUSTFLAGS: -D warnings
110+
RUSTFLAGS: -Awarnings
111111
RUST_BACKTRACE: 1
112112
CARGO_FLAGS: --verbose --locked
113113
CARGO_INCREMENTAL: 0

src/jortestkit/.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ jobs:
6868
- uses: actions-rs/cargo@v1
6969
with:
7070
command: clippy
71-
args: -- -D warnings
71+
args: -- -Awarnings

src/vit-servicing-station-f10/vit-servicing-station-cli-f10/src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(warnings)]
12
mod api_token;
23
mod app;
34
mod csv;

src/vit-servicing-station-f10/vit-servicing-station-lib-f10/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ extern crate structopt;
55

66
#[macro_use]
77
extern crate diesel_migrations;
8-
98
pub mod db;
109
pub mod server;
1110
pub mod utils;

src/vit-servicing-station-f10/vit-servicing-station-server-f10/src/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(warnings)]
12
use std::path::{Path, PathBuf};
23
use structopt::StructOpt;
34

src/vit-servicing-station-f10/vit-servicing-station-tests-f10/src/tests/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(warnings)]
12
pub mod bootstrap;
23
pub mod cli;
34
pub mod data;

src/vit-testing/.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
test_debug:
101101
executor: rust-stable
102102
environment:
103-
RUSTFLAGS: '-D warnings'
103+
RUSTFLAGS: '-Awarnings'
104104
CARGO_INCREMENTAL: 0
105105
steps:
106106
- test
@@ -137,7 +137,7 @@ commands:
137137
sudo python3.8 -m pip install pipenv
138138
- run:
139139
name: install python libs
140-
command: |
140+
command: |
141141
pip install httpx
142142
pip install pydantic
143143
pip install typer

src/vit-testing/iapyx/src/bin/load/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use iapyx::ArtificialUserLoad;
88
use iapyx::MultiControllerError;
99
use iapyx::NodeLoadError;
1010
use iapyx::ServicingStationLoad;
11-
pub use jortestkit::console::progress_bar::{parse_progress_bar_mode_from_str, ProgressBarMode};
11+
pub use jortestkit::console::progress_bar::ProgressBarMode;
1212
use jortestkit::load::Monitor;
1313
use std::path::PathBuf;
1414
use thiserror::Error;

0 commit comments

Comments
 (0)