diff options
author | Maxime Peim <mpeim@cisco.com> | 2023-11-14 15:26:41 +0100 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2024-01-18 20:14:54 +0000 |
commit | 77caeb1b193404e76beb27a1aa81321e8eb1cf1f (patch) | |
tree | bffb3aa51d53f96ad45a55d337f262260c191461 /test/config.py | |
parent | 87241fefd94423cdc50cfe6b1b54fec955b5f0d3 (diff) |
tests: preload api files
When sanity test is not done, API files are not loaded until the
first test case is run. Hence, it is not possible to use enums, etc.
outside of a test class.
By preloading API files before running any tests, it prevents its
issue.
Type: fix
Change-Id: I8730150374e6c5f8d6933ec037811372ac2a8da0
Signed-off-by: Maxime Peim <mpeim@cisco.com>
Diffstat (limited to 'test/config.py')
-rw-r--r-- | test/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/config.py b/test/config.py index 2fa93ddef3b..32cc4cac5fa 100644 --- a/test/config.py +++ b/test/config.py @@ -201,6 +201,7 @@ parser.add_argument( parser.add_argument( "--sanity", action="store_true", help="perform sanity vpp run before running tests" ) +parser.add_argument("--api-preload", action="store_true", help="preload API files") parser.add_argument( "--force-foreground", |