-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the standard header in all READMEs (#784)
- Loading branch information
Showing
18 changed files
with
226 additions
and
138 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
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
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,43 @@ | ||
## Allure Behave Formatter | ||
|
||
[![Release Status](https://img.shields.io/pypi/v/allure-behave)](https://pypi.python.org/pypi/allure-behave) | ||
[![Downloads](https://img.shields.io/pypi/dm/allure-behave)](https://pypi.python.org/pypi/allure-behave) | ||
|
||
> An Allure adapter for [Behave](https://behave.readthedocs.io/en/latest/). | ||
[<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />](https://allurereport.org "Allure Report") | ||
|
||
- Learn more about Allure Report at [https://allurereport.org](https://allurereport.org) | ||
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report | ||
- ❓ [Questions and Support](https://github.com/orgs/allure-framework/discussions/categories/questions-support) – get help from the team and community | ||
- 📢 [Official announcements](https://github.com/orgs/allure-framework/discussions/categories/announcements) – stay updated with our latest news and updates | ||
- 💬 [General Discussion](https://github.com/orgs/allure-framework/discussions/categories/general-discussion) – engage in casual conversations, share insights and ideas with the community | ||
- 🖥️ [Live Demo](https://demo.allurereport.org/) — explore a live example of Allure Report in action | ||
|
||
--- | ||
|
||
## Quick start | ||
|
||
```shell | ||
$ pip install allure-behave | ||
$ behave -f allure_behave.formatter:AllureFormatter -o %allure_result_folder% ./features | ||
$ allure serve %allure_result_folder% | ||
``` | ||
|
||
### Support behave parallel | ||
|
||
The current implementation of behave-parallel makes some allure features inaccessible. | ||
In this case you need to patch your environment.py files instead of using the formatter. | ||
If you don't use environment.py, just create a new one that calls Allure Behave like that: | ||
|
||
```python | ||
from allure_behave.hooks import allure_report | ||
|
||
### your code | ||
|
||
allure_report("path/to/result/dir") | ||
``` | ||
|
||
## Further readings | ||
|
||
Learn more from [Allure behave's official documentation](https://allurereport.org/docs/behave/). |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
] | ||
|
||
setup_requires = [ | ||
|
@@ -45,13 +46,18 @@ def main(): | |
name=PACKAGE, | ||
use_scm_version=prepare_version, | ||
description="Allure behave integration", | ||
url="https://github.com/allure-framework/allure-python", | ||
url="https://allurereport.org/", | ||
project_urls={ | ||
"Documentation": "https://allurereport.org/docs/behave/", | ||
"Source": "https://github.com/allure-framework/allure-python", | ||
}, | ||
author="QAMetaSoftware, Stanislav Seliverstov", | ||
author_email="[email protected]", | ||
license="Apache-2.0", | ||
classifiers=classifiers, | ||
keywords="allure reporting behave", | ||
long_description=get_readme('README.rst'), | ||
long_description=get_readme("README.md"), | ||
long_description_content_type="text/markdown", | ||
packages=["allure_behave"], | ||
package_dir={"allure_behave": "src"}, | ||
setup_requires=setup_requires, | ||
|
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,17 @@ | ||
## Allure nose2 | ||
|
||
[![Release Status](https://img.shields.io/pypi/v/allure-nose2)](https://pypi.python.org/pypi/allure-nose2) | ||
[![Downloads](https://img.shields.io/pypi/dm/allure-nose2)](https://pypi.python.org/pypi/allure-nose2) | ||
|
||
> An Allure adapter for [nose2](https://docs.nose2.io/en/latest/). | ||
[<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />](https://allurereport.org "Allure Report") | ||
|
||
- Learn more about Allure Report at [https://allurereport.org](https://allurereport.org) | ||
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report | ||
- ❓ [Questions and Support](https://github.com/orgs/allure-framework/discussions/categories/questions-support) – get help from the team and community | ||
- 📢 [Official announcements](https://github.com/orgs/allure-framework/discussions/categories/announcements) – stay updated with our latest news and updates | ||
- 💬 [General Discussion](https://github.com/orgs/allure-framework/discussions/categories/general-discussion) – engage in casual conversations, share insights and ideas with the community | ||
- 🖥️ [Live Demo](https://demo.allurereport.org/) — explore a live example of Allure Report in action | ||
|
||
--- |
Empty file.
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 |
---|---|---|
|
@@ -16,6 +16,7 @@ | |
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
] | ||
|
||
setup_requires = [ | ||
|
@@ -44,13 +45,17 @@ def main(): | |
name=PACKAGE, | ||
use_scm_version=prepare_version, | ||
description="Allure nose2 integration", | ||
url="https://github.com/allure-framework/allure-python", | ||
url="https://allurereport.org/", | ||
project_urls={ | ||
"Source": "https://github.com/allure-framework/allure-python", | ||
}, | ||
author="QAMetaSoftware, Stanislav Seliverstov", | ||
author_email="[email protected]", | ||
license="Apache-2.0", | ||
classifiers=classifiers, | ||
keywords="allure reporting nose2", | ||
long_description=get_readme('README.rst'), | ||
long_description=get_readme("README.md"), | ||
long_description_content_type="text/markdown", | ||
packages=["allure_nose2"], | ||
package_dir={"allure_nose2": "src"}, | ||
setup_requires=setup_requires, | ||
|
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,25 @@ | ||
## Allure Pytest-BDD | ||
|
||
[![Release Status](https://img.shields.io/pypi/v/allure-pytest-bdd)](https://pypi.python.org/pypi/allure-pytest-bdd) | ||
[![Downloads](https://img.shields.io/pypi/dm/allure-pytest-bdd)](https://pypi.python.org/pypi/allure-pytest-bdd) | ||
|
||
> An Allure adapter for [Pytest-BDD](https://pytest-bdd.readthedocs.io/en/stable/). | ||
[<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />](https://allurereport.org "Allure Report") | ||
|
||
- Learn more about Allure Report at [https://allurereport.org](https://allurereport.org) | ||
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report | ||
- ❓ [Questions and Support](https://github.com/orgs/allure-framework/discussions/categories/questions-support) – get help from the team and community | ||
- 📢 [Official announcements](https://github.com/orgs/allure-framework/discussions/categories/announcements) – stay updated with our latest news and updates | ||
- 💬 [General Discussion](https://github.com/orgs/allure-framework/discussions/categories/general-discussion) – engage in casual conversations, share insights and ideas with the community | ||
- 🖥️ [Live Demo](https://demo.allurereport.org/) — explore a live example of Allure Report in action | ||
|
||
--- | ||
|
||
## Quick start | ||
|
||
```shell | ||
$ pip install allure-pytest-bdd | ||
$ pytest --alluredir=%allure_result_folder% ./tests | ||
$ allure serve %allure_result_folder% | ||
``` |
Empty file.
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 |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
] | ||
|
||
setup_requires = [ | ||
|
@@ -46,13 +47,17 @@ def main(): | |
name=PACKAGE, | ||
use_scm_version=prepare_version, | ||
description="Allure pytest-bdd integration", | ||
url="https://github.com/allure-framework/allure-python", | ||
url="https://allurereport.org/", | ||
project_urls={ | ||
"Source": "https://github.com/allure-framework/allure-python", | ||
}, | ||
author="QAMetaSoftware, Stanislav Seliverstov", | ||
author_email="[email protected]", | ||
license="Apache-2.0", | ||
classifiers=classifiers, | ||
keywords="allure reporting pytest", | ||
long_description=get_readme('README.rst'), | ||
long_description=get_readme("README.md"), | ||
long_description_content_type="text/markdown", | ||
packages=["allure_pytest_bdd"], | ||
package_dir={"allure_pytest_bdd": "src"}, | ||
entry_points={"pytest11": ["allure_pytest_bdd = allure_pytest_bdd.plugin"]}, | ||
|
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,29 @@ | ||
## Allure Pytest Plugin | ||
|
||
[![Release Status](https://img.shields.io/pypi/v/allure-pytest)](https://pypi.python.org/pypi/allure-pytest) | ||
[![Downloads](https://img.shields.io/pypi/dm/allure-pytest)](https://pypi.python.org/pypi/allure-pytest) | ||
|
||
> An Allure adapter for [pytest](https://docs.pytest.org/en/latest/). | ||
[<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />](https://allurereport.org "Allure Report") | ||
|
||
- Learn more about Allure Report at [https://allurereport.org](https://allurereport.org) | ||
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report | ||
- ❓ [Questions and Support](https://github.com/orgs/allure-framework/discussions/categories/questions-support) – get help from the team and community | ||
- 📢 [Official announcements](https://github.com/orgs/allure-framework/discussions/categories/announcements) – stay updated with our latest news and updates | ||
- 💬 [General Discussion](https://github.com/orgs/allure-framework/discussions/categories/general-discussion) – engage in casual conversations, share insights and ideas with the community | ||
- 🖥️ [Live Demo](https://demo.allurereport.org/) — explore a live example of Allure Report in action | ||
|
||
--- | ||
|
||
## Quick start | ||
|
||
```shell | ||
$ pip install allure-pytest | ||
$ pytest --alluredir=%allure_result_folder% ./tests | ||
$ allure serve %allure_result_folder% | ||
``` | ||
|
||
## Further readings | ||
|
||
Learn more from [Allure pytest's official documentation](https://allurereport.org/docs/pytest/). |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -29,6 +29,7 @@ | |
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
] | ||
|
||
setup_requires = [ | ||
|
@@ -58,13 +59,18 @@ def main(): | |
name=PACKAGE, | ||
use_scm_version=prepare_version, | ||
description="Allure pytest integration", | ||
url="https://github.com/allure-framework/allure-python", | ||
url="https://allurereport.org/", | ||
project_urls={ | ||
"Documentation": "https://allurereport.org/docs/pytest/", | ||
"Source": "https://github.com/allure-framework/allure-python", | ||
}, | ||
author="QAMetaSoftware, Stanislav Seliverstov", | ||
author_email="[email protected]", | ||
license="Apache-2.0", | ||
classifiers=classifiers, | ||
keywords="allure reporting pytest", | ||
long_description=get_readme('README.rst'), | ||
long_description=get_readme("README.md"), | ||
long_description_content_type="text/markdown", | ||
packages=["allure_pytest"], | ||
package_dir={"allure_pytest": "src"}, | ||
entry_points={"pytest11": ["allure_pytest = allure_pytest.plugin"]}, | ||
|
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
] | ||
|
||
install_requires = [ | ||
|
@@ -29,7 +30,10 @@ def main(): | |
use_scm_version={"root": "..", "relative_to": __file__}, | ||
setup_requires=['setuptools_scm'], | ||
description="Common module for integrate allure with python-based frameworks", | ||
url="https://github.com/allure-framework/allure-python", | ||
url="https://allurereport.org/", | ||
project_urls={ | ||
"Source": "https://github.com/allure-framework/allure-python", | ||
}, | ||
author="QAMetaSoftware, Stanislav Seliverstov", | ||
author_email="[email protected]", | ||
license="Apache-2.0", | ||
|
Oops, something went wrong.