diff --git a/examples/pytorch/conftest.py b/examples/pytorch/conftest.py index 2415ae8db1738..e85e5afb0200b 100644 --- a/examples/pytorch/conftest.py +++ b/examples/pytorch/conftest.py @@ -22,9 +22,10 @@ # allow having multiple repository checkouts and not needing to remember to rerun # 'pip install -e .[dev]' when switching between checkouts and running tests. -git_repo_path = abspath(join(dirname(dirname(__file__)), "src")) +git_repo_path = abspath(join(dirname(dirname(dirname(__file__))), "src")) sys.path.insert(1, git_repo_path) + # silence FutureWarning warnings in tests since often we can't act on them until # they become normal warnings - i.e. the tests still need to test the current functionality warnings.simplefilter(action="ignore", category=FutureWarning)