Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
get_logger, patch_traitlets_app_logs,
)
from jupyter_contrib_core.testing_utils.jupyter_env import patch_jupyter_dirs
from nose.plugins.skip import SkipTest
from traitlets.config import Config
from traitlets.tests.utils import check_help_all_output, check_help_output

Expand Down Expand Up @@ -226,10 +227,14 @@ def test_08_app_install_system(self):

def test_09_app_install_symlink(self):
"""Check that app install works correctly using --symlink flag."""
if os.name in ('nt', 'dos'):
raise SkipTest('symlinks are not supported on Windows.')
self.check_app_install(argv=['--symlink'])

def test_10_cli_install_symlink(self):
"""Check that cli install works correctly using --symlink flag."""
if os.name in ('nt', 'dos'):
raise SkipTest('symlinks are not supported on Windows.')
self.check_cli_install(
argv=['--user', '--symlink'], dirs=self.jupyter_dirs['env_vars'])

Expand Down