From c1fe66deb639f82010d0b91cd528eeea1314eb2d Mon Sep 17 00:00:00 2001 From: grandizzy <38490174+grandizzy@users.noreply.github.com> Date: Mon, 14 Oct 2024 20:58:51 +0300 Subject: [PATCH] Update test match configs (#1333) --- src/static/config.default.toml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/static/config.default.toml b/src/static/config.default.toml index 1bcf419fc..fd6021156 100644 --- a/src/static/config.default.toml +++ b/src/static/config.default.toml @@ -115,17 +115,19 @@ rpc_endpoints = { optimism = "https://optimism.alchemyapi.io/v2/...", mainnet = # Etherscan API key #etherscan_api_key = None # Only run test functions matching the specified regex pattern -#test_pattern = None +#match_test = None # Only run test functions that do not match the specified regex pattern -#test_pattern_inverse = None +#no_match_test = None # Only run tests in contracts matching the specified regex pattern -#contract_pattern = None +#match_contract = None # Only run tests in contracts that do not match the specified regex pattern -#contract_pattern_inverse = None +#no_match_contract = None # Only run tests in source files matching the specified glob pattern -#path_pattern = None +#match_path = None # Only run tests in source files that do not match the specified glob pattern -#path_pattern_inverse = None +#no_match_path = None +# Only show coverage for files that do not match the specified regex pattern. +#no_match_coverage = None # Number of threads to use. Not set or zero specifies the number of logical cores. #threads = 0 # Whether to show test execution progress