From c7f93b321d02c532f612587f939f8188526139ac Mon Sep 17 00:00:00 2001 From: Saima Yunus Date: Wed, 10 Aug 2022 03:25:31 -0400 Subject: 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 Change-Id: Id2beecbb99f24ce13ed118a1869c5adbef247e50 --- test/run_tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/run_tests.py') diff --git a/test/run_tests.py b/test/run_tests.py index 917e0dc0057..85344ca15e2 100644 --- a/test/run_tests.py +++ b/test/run_tests.py @@ -947,11 +947,10 @@ if __name__ == "__main__": filter_cb = FilterByTestOption(filter_file, filter_class, filter_func) - ignore_path = config.venv_dir cb = SplitToSuitesCallback(filter_cb) for d in config.test_src_dir: print("Adding tests from directory tree %s" % d) - discover_tests(d, cb, ignore_path) + discover_tests(d, cb) # suites are not hashable, need to use list suites = [] -- cgit 1.2.3-korg