From: Michael Fladischer <FladischerMichael@fladi.at>
Date: Mon, 21 Jan 2019 16:08:49 +0100
Subject: Disable entry point script test as the script is not installed at
 the time the tests are run.

---
 tests/test_cli.py | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/tests/test_cli.py b/tests/test_cli.py
index d41942b..6e68388 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -185,26 +185,26 @@ def test_usage_string(tmpdir, capsys):
     assert EXPECTED_USAGE in out
 
 
-def test_usage_string_fork(tmpdir):
-    tmpdir.chdir()
-
-    if platform.system() == "Windows":
-        # There are encoding problems on Windows with the encoding of →
-        tmpdir.join(".bumpversion.cfg").write(dedent("""
-             [bumpversion]
-             message: Bump version: {current_version} to {new_version}
-             tag_message: 'Bump version: {current_version} to {new_version}
-             """))
-
-    try:
-        out = check_output('bumpversion --help', shell=True, stderr=subprocess.STDOUT)
-    except subprocess.CalledProcessError as e:
-        out = e.output
-
-    if b'usage: bumpversion [-h]' not in out:
-        print(out)
-
-    assert b'usage: bumpversion [-h]' in out
+#def test_usage_string_fork(tmpdir):
+#    tmpdir.chdir()
+#
+#    if platform.system() == "Windows":
+#        # There are encoding problems on Windows with the encoding of →
+#        tmpdir.join(".bumpversion.cfg").write(dedent("""
+#             [bumpversion]
+#             message: Bump version: {current_version} to {new_version}
+#             tag_message: 'Bump version: {current_version} to {new_version}
+#             """))
+#
+#    try:
+#        out = check_output('bumpversion --help', shell=True, stderr=subprocess.STDOUT)
+#    except subprocess.CalledProcessError as e:
+#        out = e.output
+#
+#    if b'usage: bumpversion [-h]' not in out:
+#        print(out)
+#
+#    assert b'usage: bumpversion [-h]' in out
 
 
 def test_regression_help_in_work_dir(tmpdir, capsys, vcs):
@@ -1851,11 +1851,11 @@ def test_non_matching_search_does_not_modify_file(tmpdir):
 
     changelog_content = dedent("""
     # Unreleased
-    
+
     * bullet point A
-    
+
     # Release v'older' (2019-09-17)
-    
+
     * bullet point B
     """)
 
