diff --git a/autojump_argparse.py b/autojump_argparse.py deleted file mode 120000 index 38b89f5..0000000 --- a/autojump_argparse.py +++ /dev/null @@ -1 +0,0 @@ -bin/autojump_argparse.py \ No newline at end of file diff --git a/install.py b/install.py index b296fb9..a152e1a 100755 --- a/install.py +++ b/install.py @@ -8,6 +8,7 @@ import platform import shutil import sys +sys.path.append('bin') from autojump_argparse import ArgumentParser SUPPORTED_SHELLS = ('bash', 'zsh', 'fish') diff --git a/tests/autojump.py b/tests/autojump.py deleted file mode 120000 index 4581d70..0000000 --- a/tests/autojump.py +++ /dev/null @@ -1 +0,0 @@ -../bin/autojump \ No newline at end of file diff --git a/tests/autojump_argparse.py b/tests/autojump_argparse.py deleted file mode 120000 index c5acfbb..0000000 --- a/tests/autojump_argparse.py +++ /dev/null @@ -1 +0,0 @@ -../bin/autojump_argparse.py \ No newline at end of file diff --git a/tests/autojump_data.py b/tests/autojump_data.py deleted file mode 120000 index 764136f..0000000 --- a/tests/autojump_data.py +++ /dev/null @@ -1 +0,0 @@ -../bin/autojump_data.py \ No newline at end of file diff --git a/tests/autojump_utils.py b/tests/autojump_utils.py deleted file mode 120000 index d9b39af..0000000 --- a/tests/autojump_utils.py +++ /dev/null @@ -1 +0,0 @@ -../bin/autojump_utils.py \ No newline at end of file diff --git a/tests/autojump_utils_test.py b/tests/autojump_utils_test.py index a07e4e3..815347a 100644 --- a/tests/autojump_utils_test.py +++ b/tests/autojump_utils_test.py @@ -20,6 +20,10 @@ from testify import setup from testify import suite from testify import teardown +if sys.version_info[0] == 3: + os.getcwdu = os.getcwd +sys.path.append(os.path.join(os.getcwd(), 'bin')) + import autojump_utils from autojump_utils import create_dir from autojump_utils import encode_local