Travis CI is continuous integration (CI) platform that software development teams use to automatically build and test code changes. With Travis CI, developers can get immediate feedback on the success of a change.
To set up Travis CI integration for your API, first create an API token in Travis CI and then configure your API in Postman. After you set up the integration, you can view the status of builds or start a new build, all from within Postman.
After you set up a Travis CI integration, status information for build jobs is available in Postman. For each build you can view the commit message, the branch the build ran on, the start time and duration, and the build status (Passed
or Failed
).
To view build jobs, open an API and select Test and Automation. The most recent jobs are listed under the repository name.
Select View All Builds to view the full list of build jobs. From here you can take the following actions:
Using the Postman CLI, you can run Postman collections with your API tests as part of a Travis CI pipeline.
To view details for collections that were run as part of a build, first configure the Postman CLI for Travis CI and then start a new build. After the build is complete, use the arrows to expand a build and expand a collection to view details about a collection run.
Select View Report to view a collection run report in the Postman History. Learn more about using the Collection Runner.
Using the Postman CLI, you can enforce Postman API Governance and API Security rules each time the pipeline runs using the api lint command (Enterprise teams only).
To view the results of API Governance and API Security checks that ran as part of the build, first configure the Postman CLI for Travis CI and then start a new build. After the build is complete, use the arrows to expand a build and expand an API definition to view any rule violations.
With the help of the Postman CLI and the Postman API, you can run Postman collections with your API tests as part of your Travis CI pipeline. First generate the Postman CLI configuration code in Postman. Then add the configuration code to the .travis.yml
file in your Travis CI project.
You can also enforce API Governance and API Security rules each time the pipeline runs (Enterprise teams only).
To generate configuration code for the Postman CLI, do the following:
To add the Postman CLI configuration to your Travis CI project, do the following:
.travis.yml
at the root of your project repository..travis.yml
file. Then, replace all instances of $POSTMAN_API_KEY
with a valid Postman API Key.Last modified: 2024/07/02