tests: add --testrunner flag so that column tests dont fail on startup

We added a startup panic to prevent users from running as debug mode,
our tests are also hitting this. Add a new --testrunner flag which
skips this check. We want this separate from the --debug flag so that
the tests have a more consistent runtime environment.

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2024-12-13 09:57:47 -08:00
parent 08a5ed1076
commit c874606af5
3 changed files with 10 additions and 1 deletions

View File

@@ -7,6 +7,10 @@ pub struct Args {
pub keys: Vec<Keypair>,
pub light: bool,
pub debug: bool,
/// Enable when running tests so we don't panic on app startup
pub tests: bool,
pub use_keystore: bool,
pub dbpath: Option<String>,
pub datapath: Option<String>,
@@ -20,6 +24,7 @@ impl Args {
keys: vec![],
light: false,
debug: false,
tests: false,
use_keystore: true,
dbpath: None,
datapath: None,
@@ -38,6 +43,8 @@ impl Args {
res.light = false;
} else if arg == "--debug" {
res.debug = true;
} else if arg == "--testrunner" {
res.tests = true;
} else if arg == "--pub" || arg == "--npub" {
i += 1;
let pubstr = if let Some(next_arg) = args.get(i) {