From e06d9e02877b08a2cb4ba60423faced67aaaf92c Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Fri, 5 Nov 2021 12:43:11 +0800 Subject: [PATCH] change a package --- .github/workflows/ci.yaml | 2 +- tests/integration/test_cli.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 641a928f..1a1919a7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -80,4 +80,4 @@ jobs: PYTHONIOENCODING: 'utf-8' GIT_SSH_COMMAND: ssh -o StrictHostKeyChecking=accept-new -o CheckHostIP=no run: | - pipenv run pytest -ra -n auto tests + pipenv run pytest -ra -n auto --fulltrace tests diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index 7c3afd34..ca201f2a 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -142,12 +142,12 @@ def test_pipenv_graph_reverse(PipenvInstance): @flaky def test_pipenv_check(PipenvInstance): with PipenvInstance() as p: - c = p.pipenv('install requests==1.0.0') + c = p.pipenv('install pyyaml') assert c.returncode == 0 c = p.pipenv('check') assert c.returncode != 0 - assert 'requests' in c.stdout - c = p.pipenv('uninstall requests') + assert 'pyyaml' in c.stdout + c = p.pipenv('uninstall pyyaml') assert c.returncode == 0 c = p.pipenv('install six') assert c.returncode == 0