Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generating allure report using pytest

I am using py test allure adaptor and trying to generate input data required for allure report. But I am not able to generate any XML's. When I execute the py file using py.test sample.py, it did create pycache dir. Then I executed "allure generate -v 1.3.9 C:\allurereports" (This is the dir where I had the sample.py). It did create an allure html report but no of test cases was 0. No details were present.

The sample.py(it is same as given in the example)

import allure


@allure.feature('Feature1')
@allure.story('Story1')
def test_minor():
    assert False


@allure.feature('Feature2')
@allure.story('Story2', 'Story3')
@allure.story('Story4')
class TestBar:

    # will have 'Feature2 and Story2 and Story3 and Story4'
    def test_bar(self):
        pass

Here's the py.test command used: py.test sample.py --allure_features=feature1,feature2

Can anybody help me how to generate an allure report from the file? What are the commands to execute?

like image 349
Lavanya Avatar asked Oct 17 '14 23:10

Lavanya


2 Answers

Lavanya. I'll try to explain the sequence you must to perform to generate allure report of autotest.

  1. Install pip. Download get-pip.py and perform python get-pip.py.

  2. Install pytest and pytest-allure-adaptor via pip. Perform python -m pip install pytest pytest-allure-adaptor

  3. Generate autotest allure xml report. Perform python -m pytest sample.py --alluredir <some directory>

  4. In <some directory> appear xml autotest report, which contain results of sample.py tests. Let's make beauty html report via an allure-cli tool.

  5. Install allure-cli. Download last version of allure-cli. allure-cli requires java. allure-cli doesn't require installation, just unpack and use it.

  6. Generate html report. Find allure (allure.bat for Windows) in unpacked zip. Perform allure.bat generate -o <some directory> -v 1.4.0 <some directory>

  7. Find index.html in <some directory> and open it via a browser.

*Note <some directory> the same for all steps

like image 75
George Regentov Avatar answered Oct 28 '22 05:10

George Regentov


There is a very simple way to generate reports via allure:

first, install allure:

  1. allure-pytest 2.6.0
  2. allure-python-commons 2.6.0

Then, if you are unable to generate the reports, follow below steps:

  1. (using pytest)

    pytest test_xyz.py --alluredir=path_where_you_want_to_save_reports
    
  2. allure serve report_path
    

If it is still showing allure is not recognized command (blah -blah), then install allure using npm plugin with below command:

npm install -g allure-commandline --save-dev

then follow step (2) again, then one server will start and you will be able to see allure reports.

like image 33
jayesh Avatar answered Oct 28 '22 04:10

jayesh