From c600d1e1ad3cef69f6028afd64e14a04c747e1c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tadej=20Jane=C5=BE?= Date: Thu, 26 Aug 2021 12:10:13 +0200 Subject: [PATCH] Replace version of Python to install in test_{un,}install test PyPy 2.6.1's download link is not working anymore. --- tests/test_install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_install.py b/tests/test_install.py index 478ccbb..b420c59 100644 --- a/tests/test_install.py +++ b/tests/test_install.py @@ -16,14 +16,14 @@ def skip_marker(f): @skip_marker def test_install(): - py_version = ['2.6.1', '--type', 'pypy'] + py_version = ['3.5.1'] assert invoke('install', *py_version).returncode == 0 py = invoke('locate_python', *py_version).out check_call([py, '-V']) @skip_marker def test_uninstall(): - py_version = ['2.6.1', '--type', 'pypy'] + py_version = ['3.5.1'] invoke('install', *py_version) assert invoke('uninstall', *py_version).returncode == 0 assert invoke('locate_python', *py_version).returncode != 0