mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
change a package
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user