Send pytest test results to a Simvue server.
pip install git+https://github.com/simvue-io/pytest-simvue.git
Simply include the simvue
fixture when creating tests:
def test_this_works(simvue):
assert 2 == 3
Configure Simvue run options via the pytest.ini
configuration file:
[pytest]
simvue_folder = /other_folder
simvue_tags =
special
test
tags
simvue_prefix = my_tests
You can configure options also via the command line:
pytest --simvue-folder "/other-folder" --simvue-tags "special,test,tags" --simvue-prefix "my_tests"