Living Documentation With Travis CI

Learn how to use Behave Pro living documentation with Travis CI.

Alan Parkinson avatar
Written by Alan Parkinson
Updated over a week ago

To upload Cucumber test results from Travis CI, you can use the following curl command to do so:

curl -L -X PUT https://test-reports.behave.pro/REST/1.0/bdd/report \

-H "X-API-KEY: $BEHAVE_PRO_API_KEY" \

-H "X-COMMIT-ID: $TRAVIS_COMMIT" \

-H "X-BUILD-ID: $TRAVIS_BUILD_ID" \

-H "X-BUILD-URL: $TRAVIS_BUILD_WEB_URL" \

--data-binary @./target/cucumber-reports/cucumber.json

Note: Make sure your tool to send the test report follows the http 307 redirects. When using curl this can be done via -L option.

Note: If you are using Jira Server or Jira Data Center, the URL to upload the test results is the domain name of your Jira followed by /rest/behavepro/1.0/bdd

For example: https://jira.example.com/rest/behavepro/1.0/bdd

You have to create an environment variable called BEHAVE_PRO_API_KEY with value of API key. If you don't have one, you can create one by following this article: Publishing Cucumber Test results

If you are using a matrix build you have to provide X-PARAM header in the http request as shown below:

curl -L -X PUT https://test-reports.behave.pro/REST/1.0/bdd/report \

-H "X-API-KEY: $BEHAVE_PRO_API_KEY" \

-H "X-COMMIT-ID: $TRAVIS_COMMIT" \

-H "X-BUILD-ID: $TRAVIS_BUILD_ID" \

-H "X-BUILD-URL: $TRAVIS_BUILD_WEB_URL" \

-H "X-PARAM: Os=Linux" \

-H "X-PARAM: JVM=Java 1.8" \

--data-binary @./target/cucumber-reports/cucumber.json

if you want to learn more about matrix build and living documentation you can read this article: Publishing Cucumber test results from Matrix jobs.

Did this answer your question?