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