Skip to content

Commit 56ec267

Browse files
authored
fix: remove unused update-output-files arg from e2e-tests (#50)
* ci: add coverage reports * fix: remove unused update-output-files arg from e2e-tests
1 parent d62a318 commit 56ec267

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/coverage.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Coverage
2-
3-
on: [pull_request, push]
2+
'on':
3+
push:
4+
branches:
5+
- master
6+
pull_request: null
47

58
jobs:
69
coverage:

e2e-tests/src/cli.rs

-5
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ pub struct Args {
1515
/// Print out warnings, errors, and output of print options
1616
#[arg(long, env = "FLUIDO_TEST_VERBOSE")]
1717
pub verbose: bool,
18-
19-
/// Update all output files
20-
#[arg(long)]
21-
pub update_output_files: bool,
2218
}
2319

2420
#[derive(Debug, Clone)]
@@ -30,5 +26,4 @@ pub struct FilterConfig {
3026
#[derive(Debug, Clone)]
3127
pub struct RunConfig {
3228
pub verbose: bool,
33-
pub update_output_files: bool,
3429
}

e2e-tests/src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ async fn main() -> anyhow::Result<()> {
1717
};
1818
let run_config = RunConfig {
1919
verbose: args.verbose,
20-
update_output_files: args.update_output_files,
2120
};
2221

2322
run(&run_config, &filter_config).await?;

0 commit comments

Comments
 (0)