aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/allure-python-commons/.dist-info
diff options
context:
space:
mode:
authoriddqd <iddqd@yandex-team.com>2024-05-13 17:19:30 +0300
committeriddqd <iddqd@yandex-team.com>2024-05-13 17:28:44 +0300
commit84d127b9b7e96ba4352e3f5ddc9222aee9a66053 (patch)
tree2ebb2689abf65e68dfe92a3ca9b161b4b6ae183f /contrib/python/allure-python-commons/.dist-info
parentb7deb7f0b71db7419781d1b0357dfa443ccc3ff1 (diff)
downloadydb-84d127b9b7e96ba4352e3f5ddc9222aee9a66053.tar.gz
Add allure support to ydb github export
d6cba27d09fb5e50a99c36070a6a3545c8393ea1
Diffstat (limited to 'contrib/python/allure-python-commons/.dist-info')
-rw-r--r--contrib/python/allure-python-commons/.dist-info/METADATA140
-rw-r--r--contrib/python/allure-python-commons/.dist-info/top_level.txt2
2 files changed, 142 insertions, 0 deletions
diff --git a/contrib/python/allure-python-commons/.dist-info/METADATA b/contrib/python/allure-python-commons/.dist-info/METADATA
new file mode 100644
index 0000000000..94cd97681a
--- /dev/null
+++ b/contrib/python/allure-python-commons/.dist-info/METADATA
@@ -0,0 +1,140 @@
+Metadata-Version: 2.1
+Name: allure-python-commons
+Version: 2.13.5
+Summary: ('Contains the API for end users as well as helper functions and classes to build Allure adapters for Python test frameworks',)
+Home-page: https://allurereport.org/
+Author: Qameta Software Inc., Stanislav Seliverstov
+Author-email: sseliverstov@qameta.io
+License: Apache-2.0
+Project-URL: Source, https://github.com/allure-framework/allure-python
+Keywords: allure reporting report-engine
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: Intended Audience :: Developers
+Classifier: License :: OSI Approved :: Apache Software License
+Classifier: Topic :: Software Development :: Quality Assurance
+Classifier: Topic :: Software Development :: Testing
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3 :: Only
+Classifier: Programming Language :: Python :: 3.7
+Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
+Classifier: Programming Language :: Python :: 3.12
+Requires-Python: >=3.6
+Description-Content-Type: text/markdown
+Requires-Dist: attrs >=16.0.0
+Requires-Dist: pluggy >=0.4.0
+
+## Allure Common API
+
+[![Release Status](https://img.shields.io/pypi/v/allure-python-commons)](https://pypi.python.org/pypi/allure-python-commons)
+[![Downloads](https://img.shields.io/pypi/dm/allure-python-commons)](https://pypi.python.org/pypi/allure-python-commons)
+
+> The package contains classes and functions for users of Allure Report. It can
+> be used to enhance reports using an existing Allure adapter or to create new
+> adapters.
+
+[<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
+
+---
+
+## User's API
+
+Install an adapter that suits your test framework. You can then add more
+information to the report by using functions from the `allure` module.
+
+### Decorators API
+
+Use these functions as decorators of your own functions, e.g.:
+
+```python
+import allure
+
+@allure.title("My test")
+def test_fn():
+ pass
+```
+
+The full list of decorators:
+
+ - `allure.title`
+ - `allure.description`
+ - `allure.description_html`
+ - `allure.label`
+ - `allure.severity`
+ - `allure.epic`
+ - `allure.feature`
+ - `allure.story`
+ - `allure.suite`
+ - `allure.parent_suite`
+ - `allure.sub_suite`
+ - `allure.tag`
+ - `allure.id`
+ - `allure.manual`
+ - `allure.link`
+ - `allure.issue`
+ - `allure.testcase`
+ - `allure.step`
+
+Refer to the adapter's documentation for the information about what decorators
+are supported and what functions they can be applied to.
+
+### Runtime API
+
+Most of the functions of Runtime API can be accessed via `allure.dynamic.*`.
+Call them at runtime from your code.
+
+The full list includes:
+
+ - `allure.dynamic.title`
+ - `allure.dynamic.description`
+ - `allure.dynamic.description_html`
+ - `allure.dynamic.label`
+ - `allure.dynamic.severity`
+ - `allure.dynamic.epic`
+ - `allure.dynamic.feature`
+ - `allure.dynamic.story`
+ - `allure.dynamic.suite`
+ - `allure.dynamic.parent_suite`
+ - `allure.dynamic.sub_suite`
+ - `allure.dynamic.tag`
+ - `allure.dynamic.id`
+ - `allure.dynamic.manual`
+ - `allure.dynamic.link`
+ - `allure.dynamic.issue`
+ - `allure.dynamic.testcase`
+ - `allure.dynamic.parameter`
+ - `allure.attach`
+ - `allure.attach.file`
+ - `allure.step`
+
+Refer to the adapter's documentation for the information about what functions
+are supported and where you can use them.
+
+## Adapter API
+
+You may use `allure-pytest-commons` to build your own Allure adapter. The key
+elements of the corresponding API are:
+
+ - `allure_python_commons.model2`: the object model of Allure Report.
+ - `allure_python_commons.logger`: classes that are used to emit Allure Report objects (tests, containers, attachments):
+ - `AllureFileLogger`: emits to the file system.
+ - `AllureMemoryLogger`: collects the objects in memory. Useful for
+ testing.
+ - `allure_python_commons.lifecycle.AllureLifecycle`: an implementation of
+ Allure lifecycle that doesn't isolate the state between threads.
+ - `allure_python_commons.reporter.AllureReporter`: an implementation of
+ Allure lifecycle that supports some multithreaded scenarios.
+
+A new version of the API is likely to be released in the future as we need
+a decent support for multithreaded and async-based concurrency (see
+[here](https://github.com/allure-framework/allure-python/issues/697) and
+[here](https://github.com/allure-framework/allure-python/issues/720)).
diff --git a/contrib/python/allure-python-commons/.dist-info/top_level.txt b/contrib/python/allure-python-commons/.dist-info/top_level.txt
new file mode 100644
index 0000000000..6a769a1519
--- /dev/null
+++ b/contrib/python/allure-python-commons/.dist-info/top_level.txt
@@ -0,0 +1,2 @@
+allure
+allure_commons