mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
040b4649e9
This is due to slightly modified output format
13 lines
519 B
Python
13 lines
519 B
Python
import pytest
|
|
|
|
@pytest.mark.parametrize("cmd_option", ["", "--dev"])
|
|
@pytest.mark.basic
|
|
@pytest.mark.update
|
|
def test_update_outdated_with_outdated_package(pipenv_instance_private_pypi, cmd_option):
|
|
with pipenv_instance_private_pypi() as p:
|
|
package_name = "six"
|
|
p.pipenv(f"install {cmd_option} {package_name}==1.11")
|
|
c = p.pipenv("update --outdated")
|
|
assert isinstance(c.exception, SystemExit)
|
|
assert f"Package '{package_name}' out-of-date:" in c.stdout_bytes.decode("utf-8")
|