change a package

This commit is contained in:
Frost Ming
2021-11-05 12:43:11 +08:00
parent c228dc4f13
commit e06d9e0287
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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
+3 -3
View File
@@ -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