Skip to content

Commit

Permalink
Add additional test packages
Browse files Browse the repository at this point in the history
- Allows more thorough testing of new resolution method

Signed-off-by: Dan Ryan <dan@danryan.co>
  • Loading branch information
techalchemy committed Feb 17, 2019
1 parent 6b1d617 commit e392b02
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions pipenv/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,11 +384,7 @@ def get_deps_from_req(cls, req):
if not r.url:
continue
line = _requirement_to_str_lowercase_name(r)
try:
new_req, _, _ = cls.parse_line(line)
except ValueError:
print("line was: %s" % line, file=sys.stderr)
raise
new_req, _, _ = cls.parse_line(line)
new_constraints, new_lock = cls.get_deps_from_req(new_req)
locked_deps.update(new_lock)
constraints |= new_constraints
Expand Down
Binary file added tests/pypi/Cerberus/Cerberus-1.2.tar.gz
Binary file not shown.
Binary file added tests/pypi/cerberus/Cerberus-1.2.tar.gz
Binary file not shown.
Binary file added tests/pypi/enum34/enum34-1.1.6.tar.gz
Binary file not shown.
Binary file added tests/pypi/enum34/enum34-1.1.6.zip
Binary file not shown.
Binary file added tests/pypi/functools32/functools32-3.2.3-2.tar.gz
Binary file not shown.
Binary file added tests/pypi/functools32/functools32-3.2.3-2.zip
Binary file not shown.
Binary file added tests/pypi/six/six-1.12.0-py2.py3-none-any.whl
Binary file not shown.
Binary file added tests/pypi/tomlkit/tomlkit-0.5.3.tar.gz
Binary file not shown.
Binary file added tests/pypi/typing/typing-3.6.6.tar.gz
Binary file not shown.

1 comment on commit e392b02

@SamB
Copy link

@SamB SamB commented on e392b02 May 25, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why both tests/pypi/Cerberus/Cerberus-1.2.tar.gz and tests/pypi/cerberus/Cerberus-1.2.tar.gz? They kinda collide on case-insensitive filesystems, and they also look suspiciously like the same file.

Please sign in to comment.