FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Readme by sseliverstov · Pull Request #64 · allure-framework/allure-python · GitHub

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .md  (3) .py  (2) .rst  (2) All 3 file types selected
Only manifest files
Deleted files Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE.md
This file contains hidden or 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
Expand Up @@ -33,9 +33,8 @@
#### Please tell us about your environment:

- Allure version: 2.1.0
- Test framework: testng@6.8
- Allure adaptor: allure-testng@2.0-BETA8
- Generate report using: allure-maven@2.18
- Test framework: pytest@3.0
- Allure adaptor: allure-pytest@2.0.0b1

#### Other information

Expand Down
23 changes: 23 additions & 0 deletions README.md
This file contains hidden or 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,23 @@
# Allure Python Integrations

The repository contains adaptors for python-based test frameworks.
Documentation is available [online](https://docs.qameta.io/allure/2.0/), also you can get help at
[gitter chanel](https://gitter.im/allure-framework/allure-core)


## Pytest
Allure [pytest](http://pytest.org) integration. It's developed as pytest plugin and distributed via
[pypi](https://pypi.python.org/pypi/allure-pytest)


## Behave
Allure [behave](http://pythonhosted.org/behave/) integration. Just external formatter that produce test results in
allure2 format. This package is available on [pypi](https://pypi.python.org/pypi/allure-behave)


## Allure python commons
Common engine for all modules. It is useful for make integration with your homemade frameworks.


## Allure python testing
Just pack of hamcrest matchers for validation result in allure2 json format.
18 changes: 18 additions & 0 deletions allure-behave/README.rst
This file contains hidden or 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,18 @@
Allure Behave Formatter
=======================

- `Source <https://github.com/allure-framework/allure-python>`_

- `Documentation <https://docs.qameta.io/allure/2.0/>`_

- `Gitter <https://gitter.im/allure-framework/allure-core>`_


Installation and Usage
======================

.. code:: bash

$ pip install allure-behave
$ behave -f allure_behave.formatter:AllureFormatter -o %allure_result_folder% ./features
$ allure serve %allure_result_folder%
6 changes: 6 additions & 0 deletions allure-behave/setup.py
This file contains hidden or 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
@@ -1,3 +1,4 @@
import os
from setuptools import setup

PACKAGE = "allure-behave"
Expand All @@ -17,6 +18,10 @@
]


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


def main():
setup(
name=PACKAGE,
Expand All @@ -28,6 +33,7 @@ def main():
license="Apache-2.0",
classifiers=classifiers,
keywords="allure reporting behave",
long_description=read('README.rst'),
packages=["allure_behave"],
package_dir={"allure_behave": "src"},
install_requires=install_requires
Expand Down
55 changes: 0 additions & 55 deletions allure-pytest/README.md

This file was deleted.

18 changes: 18 additions & 0 deletions allure-pytest/README.rst
This file contains hidden or 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,18 @@
Allure Pytest Plugin
====================

- `Source <https://github.com/allure-framework/allure-python>`_

- `Documentation <https://docs.qameta.io/allure/2.0/>`_

- `Gitter <https://gitter.im/allure-framework/allure-core>`_


Installation and Usage
======================

.. code:: bash

$ pip install allure-pytest
$ py.test --alluredir=%allure_result_folder% ./tests
$ allure serve %allure_result_folder%
6 changes: 6 additions & 0 deletions allure-pytest/setup.py
This file contains hidden or 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
@@ -1,3 +1,4 @@
import os
from setuptools import setup

PACKAGE = "allure-pytest"
Expand All @@ -18,6 +19,10 @@
]


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


def main():
setup(
name=PACKAGE,
Expand All @@ -29,6 +34,7 @@ def main():
license="Apache-2.0",
classifiers=classifiers,
keywords="allure reporting pytest",
long_description=read('README.rst'),
packages=["allure_pytest"],
package_dir={"allure_pytest": "src"},
entry_points={"pytest11": ["allure_pytest = allure_pytest.plugin"]},
Expand Down

Back | FazBrowse Home | New Git URL