From ba0d50f2148f0db0e04a80cddb1f57ce0c91c182 Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Fri, 7 May 2021 14:44:22 -0700 Subject: [PATCH] [examples] fix sys.path in conftest.py (#11636) * restore conftest.py * fix conftest and make copies * remove unneeded parts * remove unwanted files --- examples/pytorch/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/pytorch/conftest.py b/examples/pytorch/conftest.py index 2415ae8db17382..e85e5afb0200bd 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)