Mercurial > repos > shellac > sam_consensus_v3
comparison env/lib/python3.9/site-packages/allure.py @ 0:4f3585e2f14b draft default tip
"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
| author | shellac |
|---|---|
| date | Mon, 22 Mar 2021 18:12:50 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:4f3585e2f14b |
|---|---|
| 1 from allure_commons._allure import title | |
| 2 from allure_commons._allure import description, description_html | |
| 3 from allure_commons._allure import label | |
| 4 from allure_commons._allure import severity | |
| 5 from allure_commons._allure import tag | |
| 6 from allure_commons._allure import id | |
| 7 from allure_commons._allure import suite, parent_suite, sub_suite | |
| 8 from allure_commons._allure import epic, feature, story | |
| 9 from allure_commons._allure import link, issue, testcase | |
| 10 from allure_commons._allure import Dynamic as dynamic | |
| 11 from allure_commons._allure import step | |
| 12 from allure_commons._allure import attach | |
| 13 from allure_commons.types import Severity as severity_level | |
| 14 from allure_commons.types import AttachmentType as attachment_type | |
| 15 | |
| 16 | |
| 17 __all__ = [ | |
| 18 'title', | |
| 19 'description', | |
| 20 'description_html', | |
| 21 'label', | |
| 22 'severity', | |
| 23 'suite', | |
| 24 'parent_suite', | |
| 25 'sub_suite', | |
| 26 'tag', | |
| 27 'id', | |
| 28 'epic', | |
| 29 'feature', | |
| 30 'story', | |
| 31 'link', | |
| 32 'issue', | |
| 33 'testcase', | |
| 34 'step', | |
| 35 'dynamic', | |
| 36 'severity_level', | |
| 37 'attach', | |
| 38 'attachment_type' | |
| 39 ] |
