summaryrefslogtreecommitdiff
path: root/MANIFEST.in
Commit message (Collapse)AuthorAgeFilesLines
* Include pkg_resources test data in sdistMiro Hrončok2020-02-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the error otherwise: _____________ TestFindDistributions.test_standalone_egg_directory ______________ self = <pkg_resources.tests.test_find_distributions.TestFindDistributions object at 0x7f17518a86d0> target_dir = local('/tmp/pytest-of-mockbuild/pytest-0/test_standalone_egg_directory0/target') def test_standalone_egg_directory(self, target_dir): (TESTS_DATA_DIR / 'my-test-package_unpacked-egg').copy(target_dir) dists = pkg_resources.find_distributions(str(target_dir)) > assert [dist.project_name for dist in dists] == ['my-test-package'] E AssertionError: assert [] == ['my-test-package'] E Right contains one more item: 'my-test-package' E Use -v to get the full diff pkg_resources/tests/test_find_distributions.py:25: AssertionError ____________________ TestFindDistributions.test_zipped_egg _____________________ self = <module 'py.error'>, func = <built-in function listdir> args = ('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',) kwargs = {}, __tracebackhide__ = False, cls = <class 'py.error.ENOENT'> value = FileNotFoundError(2, 'No such file or directory') tb = <traceback object at 0x7f1751a6a7c0>, errno = 2 def checked_call(self, func, *args, **kwargs): """ call a function and raise an errno-exception if applicable. """ __tracebackhide__ = True try: > return func(*args, **kwargs) E FileNotFoundError: [Errno 2] No such file or directory: '/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg' /usr/lib/python3.8/site-packages/py/_error.py:66: FileNotFoundError During handling of the above exception, another exception occurred: self = <pkg_resources.tests.test_find_distributions.TestFindDistributions object at 0x7f1751c8fe80> target_dir = local('/tmp/pytest-of-mockbuild/pytest-0/test_zipped_egg0/target') def test_zipped_egg(self, target_dir): > (TESTS_DATA_DIR / 'my-test-package_zipped-egg').copy(target_dir) pkg_resources/tests/test_find_distributions.py:30: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/py/_path/local.py:437: in copy for x in self.visit(rec=rec): /usr/lib/python3.8/site-packages/py/_path/common.py:377: in visit for x in Visitor(fil, rec, ignore, bf, sort).gen(self): /usr/lib/python3.8/site-packages/py/_path/common.py:414: in gen entries = path.listdir() /usr/lib/python3.8/site-packages/py/_path/local.py:392: in listdir names = py.error.checked_call(os.listdir, self.strpath) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <module 'py.error'>, func = <built-in function listdir> args = ('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',) kwargs = {}, __tracebackhide__ = False, cls = <class 'py.error.ENOENT'> value = FileNotFoundError(2, 'No such file or directory') tb = <traceback object at 0x7f1751a6a7c0>, errno = 2 def checked_call(self, func, *args, **kwargs): """ call a function and raise an errno-exception if applicable. """ __tracebackhide__ = True try: return func(*args, **kwargs) except self.Error: raise except (OSError, EnvironmentError): cls, value, tb = sys.exc_info() if not hasattr(value, 'errno'): raise __tracebackhide__ = False errno = value.errno try: if not isinstance(value, WindowsError): raise NameError except NameError: # we are not on Windows, or we got a proper OSError cls = self._geterrnoclass(errno) else: try: cls = self._geterrnoclass(_winerrnomap[errno]) except KeyError: raise value > raise cls("%s%r" % (func.__name__, args)) E py.error.ENOENT: [No such file or directory]: listdir('/builddir/build/BUILD/setuptools-45.2.0/pkg_resources/tests/data/my-test-package_zipped-egg',) /usr/lib/python3.8/site-packages/py/_error.py:86: ENOENT
* tweak #1644 workaround to fix `test_pip_upgrade_from_source`Benoit Pierre2019-01-281-0/+1
| | | | Explicitly exclude `pyproject.toml` so it's never added (e.g. because `setuptools_scm` is used).
* Exclude .pyc in _vendor folder from sdist outputGökçen Nurlu2018-10-271-1/+1
| | | | Fixes #1414
* Include tox.ini in the sdist. Ref #904.Jason R. Coombs2017-01-071-0/+1
|
* Include the license in sdists and similar packagings.John Kirkham2016-08-141-0/+1
|
* README and CHANGES were renamed. Update MANIFEST.in to include them once ↵Jason R. Coombs2016-05-061-1/+1
| | | | again in the source distributions. Fixes #575.
* remove _markerlib from manifestGabi Davar2016-04-161-1/+0
| | | | Signed-off-by: Gabi Davar <grizzly.nyo@gmail.com>
* Merge with master. Ref #229.Jason R. Coombs2015-12-311-1/+2
|\ | | | | | | | | --HG-- branch : feature/issue-229
| * Include pytest.ini in MANIFEST.in. Fixes #359.13.0.2Jason R. Coombs2015-03-061-0/+1
| |
| * Remove references to removed filesJason R. Coombs2015-01-041-1/+1
| |
* | Merge with 10.2.1Jason R. Coombs2015-01-021-4/+4
|\ \ | |/ | | | | | | --HG-- branch : feature/issue-229
| * Remove unused entries in manifest, fixing spurious warnings.Jason R. Coombs2015-01-021-4/+3
| |
| * Include api_tests.txt in the sdist. Fixes #312.Jason R. Coombs2014-12-291-1/+1
| |
| * Moved pkg_resources into its own package.Jason R. Coombs2014-12-241-0/+1
| |
* | Include the _vendor directory in the sdistJason R. Coombs2014-11-161-0/+1
|/ | | | | --HG-- branch : feature/issue-229
* Include the build launcher script in setuptools sdist. This helps address ↵Jason R. Coombs2014-05-211-0/+1
| | | | the requirement that all sources be included.
* Add svn test dataToshio Kuratomi2013-11-041-0/+1
|
* Add test capturing failure on Python 3 in egg_info.get_svn_revision (#20). ↵Jason R. Coombs2013-06-191-1/+1
| | | | egg_info.get_svn_revision is now a staticmethod.
* Add *.xml to MANIFEST.in0.6.37Jason R. Coombs2013-05-041-1/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : 2b26ec8909bff210f47c5f8fc620bc505e1610b5
* Fixed so _markerlib is included in Python 3 as well. I don't like the ↵Lennart Regebro2012-09-171-0/+1
| | | | | | | | package pollution, but we can maybe fix that later. --HG-- branch : distribute extra : rebase_source : 5b3de3075ffea309979c51df9d6a6a6fb1188050
* added missing files in the sdist fixes #170Tarek Ziade2010-07-031-0/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : 3d8f2228ca300091e8b7c50bbbf5bc2707372cb6
* added indexsidebar.html into the MANIFEST.intarek2009-12-281-1/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : c5110ba36fda356153e3147e05261acbd5bd6799
* Make sure the Sphinx theme nature is included in the sdistJannis Leidel2009-10-111-1/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : 5dfd01f1594ebc0732bd6abe2ed93c8337adbd1e
* including txt files as well in teststarek2009-09-101-1/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : 2d089514496c2b2b0d5246a7d1635560ffe5925f
* removed buildouttarek2009-09-081-1/+0
| | | | | | --HG-- branch : distribute extra : rebase_source : 750c19c71792d672e51c503ca0b6654bfd1624ff
* no txt file under buildout/ yettarek2009-08-051-1/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : 9ed972660846b9d43e45824cf9b515f0ac67a0ee
* adding buildout in the releasetarek2009-08-051-0/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : e6753c6425bbe04d3fb591f0fe686e37be614895
* Update the manifest to include the new docsHanno Schlichting2009-07-171-0/+1
| | | | | | --HG-- branch : distribute extra : rebase_source : 86f7000b7b66111f5cb39950c3a20575953a4865
* Added a manifest which makes sure our sdist includes the same files as the ↵Hanno Schlichting2009-07-161-0/+6
setuptools releases did so far --HG-- branch : distribute extra : rebase_source : 0beba081d5c4e8ebaeb8c87a53e83537992c56d9