Skip to content

Commit

Permalink
fix tests for latest pipenv (#436)
Browse files Browse the repository at this point in the history
Failing on master for pipenv>2023.2.4, which was the last version supported for python<3.8

Co-authored-by: Branch Vincent <[email protected]>
  • Loading branch information
elacuesta and branchvincent authored Dec 27, 2023
1 parent 0f3087f commit d9e9384
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit d9e9384

Please sign in to comment.