PyTest Website

How it works

Upload your tests results to Testuff, all at once, saving you time and money. We made this integration simple, leaving all the annoying tasks to Testuff.

Run tests from the command line

$ pytest  -v –junitxml=”result.xml”

Send results to Testuff

$ curl -k -X POST -F “file=@result.xml” https://serviceX.testuff.com/client_api/v0/testcase/[TOKEN]?branch=[BRANCH_ID]

Notes:
Reporting to Testuff is protected Via HTTP POST over SSL, and your Testuff user TOKEN is used for identification.
* You’ll find your Testuff server number under the Settings->Company Details, and your user Token under the User settings.

Python Sample

Copy to Clipboard