Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

save path tests from symlink confusion, fixes #231 #375

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/test_paths.py
Expand Up @@ -297,7 +297,7 @@ def test_jupyter_path_user_site():
)
)
for p, v in zip(path, values):
assert p == v
assert realpath(p) == realpath(v)


def test_jupyter_path_no_user_site():
Expand Down Expand Up @@ -354,7 +354,7 @@ def test_jupyter_config_path():
)
)
for p, v in zip(path, values):
assert p == v
assert realpath(p) == realpath(v)


def test_jupyter_config_path_no_user_site():
Expand All @@ -379,7 +379,7 @@ def test_jupyter_config_path_prefer_env():
)
)
for p, v in zip(path, values):
assert p == v
assert realpath(p) == realpath(v)


def test_jupyter_config_path_env():
Expand Down