0

I'm trying to find a way to execute test-cases with help of Graphical user interface in Pytest.

I found few plugins like Pytest-sugar which displays failed/passed status only. But I actually need to select the test-cases that I want to run in GUI display.

Is there a way to achieve this ?

Thanks in advance !!

Kumar
  • 69
  • 1
  • 1
  • 5
  • 1
    [purkinje](https://github.com/bbiskup/purkinje) is a web UI for executing tests with `pytest`. – hoefling Feb 11 '18 at 20:39
  • Can be installed from [PyPI](https://pypi.python.org/pypi/purkinje) via `pip install purkinje`. – phd Feb 11 '18 at 23:23

2 Answers2

0

Purkinje seems nice but doesn't shown details for failed tests. Maybe Pycharm IDE runner could be an alternative as well

Go to Run > Run... > Edit Configurations > Add a New 'Run Configuration' > Python Tests > Pytest

illustration1

illustration2

pedrocas
  • 29
  • 4
  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - [From Review](/review/low-quality-posts/19108572) – Maximilian Peters Mar 14 '18 at 15:57
  • 1
    Thanks for commenting, what about now? – pedrocas Mar 14 '18 at 17:40
-1

So far I have not found any GUI to see the status of the tests. In fact I am working on developing one with Qt5

  • As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Dec 21 '21 at 23:17