Skip to content

Commit

Permalink
Fix release tuple construction
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Oct 28, 2020
1 parent 98fbe2f commit 4f4de7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pytest-pypi/pytest_pypi/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def add_release(self, path_to_binary):
with open(path_to_binary + ".sha256") as f:
hash_value = f.read().strip()
self.releases[release] = ReleaseTuple(path_to_binary, requires_python, hash_value)
self._package_dirs.add(ReleaseTuple(path, requires_python))
self._package_dirs.add(ReleaseTuple(path, requires_python, hash_value))


class Artifact(object):
Expand Down

0 comments on commit 4f4de7b

Please sign in to comment.