Skip to content

Make freeze functional tests depend on less external services #2509

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

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
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
Binary file added tests/data/packages/INITools-0.2.tar.gz
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions tests/data/repos/hg/pip-test-package/.hg/branch
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
default
2 changes: 2 additions & 0 deletions tests/data/repos/hg/pip-test-package/.hg/cache/branchheads
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
c9963c111e7c08deaca6159084a6c5578dd86e69 0
c9963c111e7c08deaca6159084a6c5578dd86e69 default
Binary file added tests/data/repos/hg/pip-test-package/.hg/dirstate
Binary file not shown.
2 changes: 2 additions & 0 deletions tests/data/repos/hg/pip-test-package/.hg/hgrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[paths]
default = http://bitbucket.org/pypa/pip-test-package
4 changes: 4 additions & 0 deletions tests/data/repos/hg/pip-test-package/.hg/requires
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
revlogv1
fncache
store
dotencode
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions tests/data/repos/hg/pip-test-package/.hg/store/fncache
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
data/piptestpackage/__init__.py.i
data/setup.py.i
data/tests/req_just_comment.txt.i
Empty file.
Binary file added tests/data/repos/hg/pip-test-package/.hg/store/undo
Binary file not shown.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions tests/data/repos/hg/pip-test-package/.hg/undo.branch
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
default
3 changes: 3 additions & 0 deletions tests/data/repos/hg/pip-test-package/.hg/undo.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
0
pull
http://bitbucket.org/pypa/pip-test-package
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Example package with a console entry point

def main():
print("Hello, World")
14 changes: 14 additions & 0 deletions tests/data/repos/hg/pip-test-package/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import setup, find_packages

setup(name='pip-test-package',
version='0.1.1',
author='PyPA',
author_email='[email protected]',
url='https://github.com/pypa',
license='MIT',
packages=find_packages(),
zip_safe=False,
entry_points={
'console_scripts': ['pip-test-package=piptestpackage:main'],
},
)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# just a comment
Loading