From 00ebba4b5891a0e96e88e00b40fcfc04e91abb33 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Thu, 29 Mar 2018 22:00:44 -0400 Subject: [PATCH] Switch to tablib and try again Signed-off-by: Dan Ryan --- tests/test_pipenv.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/test_pipenv.py b/tests/test_pipenv.py index 9bb6f1e2..42865df2 100644 --- a/tests/test_pipenv.py +++ b/tests/test_pipenv.py @@ -562,22 +562,23 @@ tpfd = "*" @pytest.mark.run @pytest.mark.markers @pytest.mark.install + @pytest.mark.failed def test_package_environment_markers(self, pypi): with PipenvInstance(pypi=pypi) as p: with open(p.pipfile_path, 'w') as f: contents = """ [packages] -requests = {version = "*", markers="os_name=='splashwear'"} +tablib = {version = "*", markers="os_name=='splashwear'"} """.strip() f.write(contents) c = p.pipenv('install') assert c.return_code == 0 assert 'Ignoring' in c.out - assert 'markers' in p.lockfile['default']['requests'] + assert 'markers' in p.lockfile['default']['tablib'] - c = p.pipenv('run python -c "import requests;"') + c = p.pipenv('run python -c "import tablib;"') assert c.return_code == 1 @pytest.mark.run