How to run postman tests on remote jenkins

Hi,

I have my postman and newman installed on my machine but jenkins is installed on a remote machine.
How do i run the postman test scripts created on my machine from the remote jenkins

The most simple way to do this is to get a link to your collection and run it using newman on Jenkins

Alternatively, you can export the collection as a JSON file, put it in a Git repo, have Jenkins clone the repo and run the collection from there.

@vdespa Thanks for the response :slight_smile: