4

From the front page of allure.qatools.ru, it looks like these categories are created:

  • Pending
  • Passed
  • Canceled
  • Broken
  • Failed

How does this map to pytest categories?
I'd like to see skipped, xpass, xfail, and error.

Are they supported? If so, what is the mapping to allure categories?

Okken
  • 2,536
  • 21
  • 15

1 Answers1

5

It is not yet explicitly documented, but pytest-allure-adaptor of version 1.5.4 converts pytest's statuses to their allure counterparts as follows:

  • PASSED => PASSED
  • FAILED => FAILED
  • SKIPPED => CANCELLED
  • ERROR => BROKEN
  • xfail => PENDING
  • XPASS => FAILED (because allure has no special status for that)
pupssman
  • 541
  • 2
  • 11