Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix tests for latest pipenv #436

Merged
merged 1 commit into from
Dec 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/test_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from __future__ import absolute_import

import os
import sys
import unittest
from unittest.mock import patch, Mock

Expand Down Expand Up @@ -323,7 +324,9 @@ def pipfile_test(self, req_name):
'package==0.0.0',
'hash-package==0.0.1',
'hash-package2==0.0.1',
'git+https://github.com/vcs/package.git@master#egg=vcs-package',
'git+https://github.com/vcs/package.git@master#egg=vcs-package'
if sys.version_info < (3, 8)
else 'vcs-package@ git+https://github.com/vcs/package.git@master'
})

def test_pipfile_names(self):
Expand Down
Loading