Skip to content

Tags: fruch/pytest-elk-reporter

Tags

v0.2.4

Toggle v0.2.4's commit message
Add support of reporting subtest

when one uses `pytest-subtests` plugin, this plugin was
able to report only the last report from the test, which
is passing always (if no setup/teardown issues, or failure outside
of the context of subtests), and the subtest failure were lost
and not counted/reported.

this change is fixing this, and collects all of the reports during a test
and report them each on it's own.

this introduce a new field to the output of a test report, `subtest` if it's
a report from subtest, it would be the message of that subtest.

Fixes: #28

v0.2.3

Toggle v0.2.3's commit message
github action: switch to using `python -m build`

move away from using setuptools, which isn't installed
by default in new version of python

v0.2.2

Toggle v0.2.2's commit message
fix(#17): handle case when xdist isn't installed or disabled

Closes: #17

v0.2.1

Toggle v0.2.1's commit message
fix: Only function markers are collected

the collection of markers wasn't using the right pytest function
to take all of the markers for an item, now we are using `iter_markers()`

Closes: #14

v0.2.0

Toggle v0.2.0's commit message
feature(slices): incress test coverage

v0.1.17

Toggle v0.1.17's commit message
fix publish of bdist_wheel

v0.1.16

Toggle v0.1.16's commit message
add building on tags

v0.1.15

Toggle v0.1.15's commit message
github actions: fix badge link

v0.1.14

Toggle v0.1.14's commit message
Stop testing on python3.5

v0.1.13

Toggle v0.1.13's commit message
Add support for Github Action data collection