-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add licence badge to README.md and SonarQube to TravisCI
- Loading branch information
Showing
28 changed files
with
3,011 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins. | ||
|
||
This directory caches those eggs to prevent repeated downloads. | ||
|
||
However, it is safe to delete this directory. | ||
|
116 changes: 116 additions & 0 deletions
116
.eggs/pytest_runner-4.2-py3.7.egg/EGG-INFO/DESCRIPTION.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
.. image:: https://img.shields.io/pypi/v/pytest-runner.svg | ||
:target: https://pypi.org/project/pytest-runner | ||
|
||
.. image:: https://img.shields.io/pypi/pyversions/pytest-runner.svg | ||
|
||
.. image:: https://img.shields.io/travis/pytest-dev/pytest-runner/master.svg | ||
:target: https://travis-ci.org/pytest-dev/pytest-runner | ||
|
||
.. .. image:: https://img.shields.io/appveyor/ci/pytest-dev/pytest-runner/master.svg | ||
.. :target: https://ci.appveyor.com/project/pytest-dev/pytest-runner/branch/master | ||
.. .. image:: https://readthedocs.org/projects/pytest-runner/badge/?version=latest | ||
.. :target: https://pytest-runner.readthedocs.io/en/latest/?badge=latest | ||
Setup scripts can use pytest-runner to add setup.py test support for pytest | ||
runner. | ||
|
||
Usage | ||
===== | ||
|
||
- Add 'pytest-runner' to your 'setup_requires'. Pin to '>=2.0,<3dev' (or | ||
similar) to avoid pulling in incompatible versions. | ||
- Include 'pytest' and any other testing requirements to 'tests_require'. | ||
- Invoke tests with ``setup.py pytest``. | ||
- Pass ``--index-url`` to have test requirements downloaded from an alternate | ||
index URL (unnecessary if specified for easy_install in setup.cfg). | ||
- Pass additional py.test command-line options using ``--addopts``. | ||
- Set permanent options for the ``python setup.py pytest`` command (like ``index-url``) | ||
in the ``[pytest]`` section of ``setup.cfg``. | ||
- Set permanent options for the ``py.test`` run (like ``addopts`` or ``pep8ignore``) in the ``[pytest]`` | ||
section of ``pytest.ini`` or ``tox.ini`` or put them in the ``[tool:pytest]`` | ||
section of ``setup.cfg``. See `pytest issue 567 | ||
<https://github.com/pytest-dev/pytest/issues/567>`_. | ||
- Optionally, set ``test=pytest`` in the ``[aliases]`` section of ``setup.cfg`` | ||
to cause ``python setup.py test`` to invoke pytest. | ||
|
||
Example | ||
======= | ||
|
||
The most simple usage looks like this in setup.py:: | ||
|
||
setup( | ||
setup_requires=[ | ||
'pytest-runner', | ||
], | ||
tests_require=[ | ||
'pytest', | ||
], | ||
) | ||
|
||
Additional dependencies require to run the tests (e.g. mock or pytest | ||
plugins) may be added to tests_require and will be downloaded and | ||
required by the session before invoking pytest. | ||
|
||
Follow `this search on github | ||
<https://github.com/search?utf8=%E2%9C%93&q=filename%3Asetup.py+pytest-runner&type=Code&ref=searchresults>`_ | ||
for examples of real-world usage. | ||
|
||
Standalone Example | ||
================== | ||
|
||
This technique is deprecated - if you have standalone scripts | ||
you wish to invoke with dependencies, `use rwt | ||
<https://pypi.org/project/rwt>`_. | ||
|
||
Although ``pytest-runner`` is typically used to add pytest test | ||
runner support to maintained packages, ``pytest-runner`` may | ||
also be used to create standalone tests. Consider `this example | ||
failure <https://gist.github.com/jaraco/d979a558bc0bf2194c23>`_, | ||
reported in `jsonpickle #117 | ||
<https://github.com/jsonpickle/jsonpickle/issues/117>`_ | ||
or `this MongoDB test | ||
<https://gist.github.com/jaraco/0b9e482f5c0a1300dc9a>`_ | ||
demonstrating a technique that works even when dependencies | ||
are required in the test. | ||
|
||
Either example file may be cloned or downloaded and simply run on | ||
any system with Python and Setuptools. It will download the | ||
specified dependencies and run the tests. Afterward, the the | ||
cloned directory can be removed and with it all trace of | ||
invoking the test. No other dependencies are needed and no | ||
system configuration is altered. | ||
|
||
Then, anyone trying to replicate the failure can do so easily | ||
and with all the power of pytest (rewritten assertions, | ||
rich comparisons, interactive debugging, extensibility through | ||
plugins, etc). | ||
|
||
As a result, the communication barrier for describing and | ||
replicating failures is made almost trivially low. | ||
|
||
Considerations | ||
============== | ||
|
||
Conditional Requirement | ||
----------------------- | ||
|
||
Because it uses Setuptools setup_requires, pytest-runner will install itself | ||
on every invocation of setup.py. In some cases, this causes delays for | ||
invocations of setup.py that will never invoke pytest-runner. To help avoid | ||
this contingency, consider requiring pytest-runner only when pytest | ||
is invoked:: | ||
|
||
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv) | ||
pytest_runner = ['pytest-runner'] if needs_pytest else [] | ||
|
||
# ... | ||
|
||
setup( | ||
#... | ||
setup_requires=[ | ||
#... (other setup requirements) | ||
] + pytest_runner, | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright Jason R. Coombs | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
Metadata-Version: 2.0 | ||
Name: pytest-runner | ||
Version: 4.2 | ||
Summary: Invoke py.test as distutils command with dependency resolution | ||
Home-page: https://github.com/pytest-dev/pytest-runner | ||
Author: Jason R. Coombs | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Framework :: Pytest | ||
Requires-Python: >=2.7,!=3.0,!=3.1 | ||
Provides-Extra: testing | ||
Provides-Extra: docs | ||
Provides-Extra: docs | ||
Requires-Dist: sphinx; extra == 'docs' | ||
Requires-Dist: jaraco.packaging (>=3.2); extra == 'docs' | ||
Requires-Dist: rst.linker (>=1.9); extra == 'docs' | ||
Provides-Extra: testing | ||
Requires-Dist: pytest (>=2.8); extra == 'testing' | ||
Requires-Dist: pytest-sugar (>=0.9.1); extra == 'testing' | ||
Requires-Dist: collective.checkdocs; extra == 'testing' | ||
Requires-Dist: pytest-flake8; extra == 'testing' | ||
Requires-Dist: pytest-virtualenv; extra == 'testing' | ||
|
||
.. image:: https://img.shields.io/pypi/v/pytest-runner.svg | ||
:target: https://pypi.org/project/pytest-runner | ||
|
||
.. image:: https://img.shields.io/pypi/pyversions/pytest-runner.svg | ||
|
||
.. image:: https://img.shields.io/travis/pytest-dev/pytest-runner/master.svg | ||
:target: https://travis-ci.org/pytest-dev/pytest-runner | ||
|
||
.. .. image:: https://img.shields.io/appveyor/ci/pytest-dev/pytest-runner/master.svg | ||
.. :target: https://ci.appveyor.com/project/pytest-dev/pytest-runner/branch/master | ||
|
||
.. .. image:: https://readthedocs.org/projects/pytest-runner/badge/?version=latest | ||
.. :target: https://pytest-runner.readthedocs.io/en/latest/?badge=latest | ||
|
||
Setup scripts can use pytest-runner to add setup.py test support for pytest | ||
runner. | ||
|
||
Usage | ||
===== | ||
|
||
- Add 'pytest-runner' to your 'setup_requires'. Pin to '>=2.0,<3dev' (or | ||
similar) to avoid pulling in incompatible versions. | ||
- Include 'pytest' and any other testing requirements to 'tests_require'. | ||
- Invoke tests with ``setup.py pytest``. | ||
- Pass ``--index-url`` to have test requirements downloaded from an alternate | ||
index URL (unnecessary if specified for easy_install in setup.cfg). | ||
- Pass additional py.test command-line options using ``--addopts``. | ||
- Set permanent options for the ``python setup.py pytest`` command (like ``index-url``) | ||
in the ``[pytest]`` section of ``setup.cfg``. | ||
- Set permanent options for the ``py.test`` run (like ``addopts`` or ``pep8ignore``) in the ``[pytest]`` | ||
section of ``pytest.ini`` or ``tox.ini`` or put them in the ``[tool:pytest]`` | ||
section of ``setup.cfg``. See `pytest issue 567 | ||
<https://github.com/pytest-dev/pytest/issues/567>`_. | ||
- Optionally, set ``test=pytest`` in the ``[aliases]`` section of ``setup.cfg`` | ||
to cause ``python setup.py test`` to invoke pytest. | ||
|
||
Example | ||
======= | ||
|
||
The most simple usage looks like this in setup.py:: | ||
|
||
setup( | ||
setup_requires=[ | ||
'pytest-runner', | ||
], | ||
tests_require=[ | ||
'pytest', | ||
], | ||
) | ||
|
||
Additional dependencies require to run the tests (e.g. mock or pytest | ||
plugins) may be added to tests_require and will be downloaded and | ||
required by the session before invoking pytest. | ||
|
||
Follow `this search on github | ||
<https://github.com/search?utf8=%E2%9C%93&q=filename%3Asetup.py+pytest-runner&type=Code&ref=searchresults>`_ | ||
for examples of real-world usage. | ||
|
||
Standalone Example | ||
================== | ||
|
||
This technique is deprecated - if you have standalone scripts | ||
you wish to invoke with dependencies, `use rwt | ||
<https://pypi.org/project/rwt>`_. | ||
|
||
Although ``pytest-runner`` is typically used to add pytest test | ||
runner support to maintained packages, ``pytest-runner`` may | ||
also be used to create standalone tests. Consider `this example | ||
failure <https://gist.github.com/jaraco/d979a558bc0bf2194c23>`_, | ||
reported in `jsonpickle #117 | ||
<https://github.com/jsonpickle/jsonpickle/issues/117>`_ | ||
or `this MongoDB test | ||
<https://gist.github.com/jaraco/0b9e482f5c0a1300dc9a>`_ | ||
demonstrating a technique that works even when dependencies | ||
are required in the test. | ||
|
||
Either example file may be cloned or downloaded and simply run on | ||
any system with Python and Setuptools. It will download the | ||
specified dependencies and run the tests. Afterward, the the | ||
cloned directory can be removed and with it all trace of | ||
invoking the test. No other dependencies are needed and no | ||
system configuration is altered. | ||
|
||
Then, anyone trying to replicate the failure can do so easily | ||
and with all the power of pytest (rewritten assertions, | ||
rich comparisons, interactive debugging, extensibility through | ||
plugins, etc). | ||
|
||
As a result, the communication barrier for describing and | ||
replicating failures is made almost trivially low. | ||
|
||
Considerations | ||
============== | ||
|
||
Conditional Requirement | ||
----------------------- | ||
|
||
Because it uses Setuptools setup_requires, pytest-runner will install itself | ||
on every invocation of setup.py. In some cases, this causes delays for | ||
invocations of setup.py that will never invoke pytest-runner. To help avoid | ||
this contingency, consider requiring pytest-runner only when pytest | ||
is invoked:: | ||
|
||
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv) | ||
pytest_runner = ['pytest-runner'] if needs_pytest else [] | ||
|
||
# ... | ||
|
||
setup( | ||
#... | ||
setup_requires=[ | ||
#... (other setup requirements) | ||
] + pytest_runner, | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
ptr.py,sha256=IM4hHsAQupOOtEyjTSel-LcBwa-ukjyR03NEscYIgIE,5177 | ||
pytest_runner-4.2.dist-info/DESCRIPTION.rst,sha256=7lzmRqtPgoZ_3o_4_xSd8lB0aO3pOe4EIRtMpMu6J4k,4322 | ||
pytest_runner-4.2.dist-info/LICENSE.txt,sha256=pV4v_ptEmY5iHVHYwJS-0JrMS1I27nPX3zlaM7o8GP0,1050 | ||
pytest_runner-4.2.dist-info/METADATA,sha256=90T8y6HPS-JzT0pMWVy-l-8cSelGluqfQv6m_iuajJA,5415 | ||
pytest_runner-4.2.dist-info/RECORD,, | ||
pytest_runner-4.2.dist-info/WHEEL,sha256=kdsN-5OJAZIiHN-iO4Rhl82KyS0bDWf4uBwMbkNafr8,110 | ||
pytest_runner-4.2.dist-info/entry_points.txt,sha256=JLlBw8SyLCUnYguY0hs5dVnA9dMbhuEVPnDjojJbXHw,59 | ||
pytest_runner-4.2.dist-info/metadata.json,sha256=mGjAZPTE8szygiLrmOp7m8qV1vvnmhAUFAlSPCBs-aU,1121 | ||
pytest_runner-4.2.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 | ||
pytest_runner-4.2.dist-info/top_level.txt,sha256=DPzHbWlKG8yq8EOD5UgEvVNDWeJRPyimrwfShwV6Iuw,4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Wheel-Version: 1.0 | ||
Generator: bdist_wheel (0.30.0) | ||
Root-Is-Purelib: true | ||
Tag: py2-none-any | ||
Tag: py3-none-any | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[distutils.commands] | ||
ptr = ptr:PyTest | ||
pytest = ptr:PyTest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Framework :: Pytest"], "extensions": {"python.details": {"contacts": [{"email": "[email protected]", "name": "Jason R. Coombs", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst", "license": "LICENSE.txt"}, "project_urls": {"Home": "https://github.com/pytest-dev/pytest-runner"}}, "python.exports": {"distutils.commands": {"ptr": "ptr:PyTest", "pytest": "ptr:PyTest"}}}, "extras": ["docs", "testing"], "generator": "bdist_wheel (0.30.0)", "metadata_version": "2.0", "name": "pytest-runner", "requires_python": ">=2.7,!=3.0,!=3.1", "run_requires": [{"extra": "testing", "requires": ["collective.checkdocs", "pytest (>=2.8)", "pytest-flake8", "pytest-sugar (>=0.9.1)", "pytest-virtualenv"]}, {"extra": "docs", "requires": ["jaraco.packaging (>=3.2)", "rst.linker (>=1.9)", "sphinx"]}], "summary": "Invoke py.test as distutils command with dependency resolution", "version": "4.2"} |
1 change: 1 addition & 0 deletions
1
.eggs/pytest_runner-4.2-py3.7.egg/EGG-INFO/namespace_packages.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
[docs] | ||
jaraco.packaging>=3.2 | ||
rst.linker>=1.9 | ||
sphinx | ||
|
||
[testing] | ||
collective.checkdocs | ||
pytest-flake8 | ||
pytest-sugar>=0.9.1 | ||
pytest-virtualenv | ||
pytest>=2.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ptr |
Oops, something went wrong.