diff options
author | Saima Yunus <yunus.saima.234@gmail.com> | 2022-08-10 03:25:31 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2022-08-16 20:27:37 +0000 |
commit | c7f93b321d02c532f612587f939f8188526139ac (patch) | |
tree | 36f8a65e7a420674193af926c9e724fdf6036034 /test/config.py | |
parent | 5c9f9968de63fa627b4a72b344df36cdc686d18a (diff) |
tests: move "venv" to "build-root" directory from "test" directory
Type: refactor
- refactored VPP test code to remove "ignore_path" variable
from "discover_tests" function and "run_test" code
- configured VPP test makefile, config file, and 'run.sh' shell script
to move "venv" directory from "test" dir to "build-root" dir
Signed-off-by: Saima Yunus <yunus.saima.234@gmail.com>
Change-Id: Id2beecbb99f24ce13ed118a1869c5adbef247e50
Diffstat (limited to 'test/config.py')
-rw-r--r-- | test/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/config.py b/test/config.py index b94dbcb10d7..b8bbbbcde7c 100644 --- a/test/config.py +++ b/test/config.py @@ -395,7 +395,7 @@ config.test_src_dir = test_dirs if config.venv_dir is None: - config.venv_dir = f"{ws}/test/venv" + config.venv_dir = f"{ws}/build-root/test/venv" if config.failed_dir is None: config.failed_dir = f"{config.tmp_dir}" |