forked from pypa/pipenv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] update --outdated raises NonExistentKey with dev package
closes pypa#5540 pipenv update --outdated fail with NonExistentKey error when there are outdated packages in dev-packages category.
- Loading branch information
Showing
4 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix: `update --outdated` raises NonExistentKey with outdated dev packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import pytest | ||
|
||
@pytest.mark.basic | ||
@pytest.mark.update | ||
def test_update_outdated(pipenv_instance_private_pypi): | ||
with pipenv_instance_private_pypi() as p: | ||
package_name = "six" | ||
p.pipenv("install {}~=1.15".format(package_name)) | ||
c = p.pipenv("update --outdated") | ||
assert c.stdout_bytes.decode("utf-8").startswith("Package {} out-of-date:".format(package_name)) | ||
assert c.returncode == 0 | ||
|
||
@pytest.mark.basic | ||
@pytest.mark.update | ||
def test_update_outdated_with_outdated_dev_package(pipenv_instance_private_pypi): | ||
with pipenv_instance_private_pypi() as p: | ||
package_name = "six" | ||
p.pipenv("install -d {}~=1.15".format(package_name)) | ||
c = p.pipenv("update --outdated") | ||
assert c.stdout_bytes.decode("utf-8").startswith("Package {} out-of-date:".format(package_name)) | ||
assert c.returncode == 0 |