[examples] fix sys.path in conftest.py (#11636)

* restore conftest.py

* fix conftest and make copies

* remove unneeded parts

* remove unwanted files
This commit is contained in:
Stas Bekman 2021-05-07 14:44:22 -07:00 committed by GitHub
parent cd9b8d7efe
commit ba0d50f214
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -22,9 +22,10 @@ from os.path import abspath, dirname, join
# 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)