Skip to content

Fixes #530 -- delete a test that has been skipped for 5 years #4370

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

Merged
merged 2 commits into from
Mar 24, 2017
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
30 changes: 1 addition & 29 deletions tests/functional/test_install_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@

import pytest

from tests.lib import (
assert_all_changes, pyversion, _create_test_package,
_change_test_package_version,
)
from tests.lib import assert_all_changes, pyversion
from tests.lib.local_repos import local_checkout


Expand Down Expand Up @@ -314,31 +311,6 @@ def test_uninstall_rollback(script, data):
)


# Issue #530 - temporarily disable flaky test
@pytest.mark.skipif
def test_editable_git_upgrade(script):
"""
Test installing an editable git package from a repository, upgrading the
repository, installing again, and check it gets the newer version
"""
version_pkg_path = _create_test_package(script)
script.pip(
'install', '-e',
'%s#egg=version_pkg' % ('git+file://' + version_pkg_path),
)
version = script.run('version_pkg')
assert '0.1' in version.stdout
_change_test_package_version(script, version_pkg_path)
script.pip(
'install', '-e',
'%s#egg=version_pkg' % ('git+file://' + version_pkg_path),
)
version2 = script.run('version_pkg')
assert 'some different version' in version2.stdout, (
"Output: %s" % (version2.stdout)
)


@pytest.mark.network
def test_should_not_install_always_from_cache(script):
"""
Expand Down