Skip to content

Commit

Permalink
fix: remove unused update-output-files arg from e2e-tests (#50)
Browse files Browse the repository at this point in the history
* ci: add coverage reports

* fix: remove unused update-output-files arg from e2e-tests
  • Loading branch information
kayagokalp authored Jun 16, 2024
1 parent d62a318 commit 56ec267
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Coverage

on: [pull_request, push]
'on':
push:
branches:
- master
pull_request: null

jobs:
coverage:
Expand Down
5 changes: 0 additions & 5 deletions e2e-tests/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ pub struct Args {
/// Print out warnings, errors, and output of print options
#[arg(long, env = "FLUIDO_TEST_VERBOSE")]
pub verbose: bool,

/// Update all output files
#[arg(long)]
pub update_output_files: bool,
}

#[derive(Debug, Clone)]
Expand All @@ -30,5 +26,4 @@ pub struct FilterConfig {
#[derive(Debug, Clone)]
pub struct RunConfig {
pub verbose: bool,
pub update_output_files: bool,
}
1 change: 0 additions & 1 deletion e2e-tests/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ async fn main() -> anyhow::Result<()> {
};
let run_config = RunConfig {
verbose: args.verbose,
update_output_files: args.update_output_files,
};

run(&run_config, &filter_config).await?;
Expand Down

0 comments on commit 56ec267

Please sign in to comment.