Postman+Newman Orb for CircleCI

Hi @smariapena,

To select a different Docker image tag in .circleci/config.yml, you can set a tag parameter on the executor declaration for the job like so:

version: 2.1

orbs:
  newman: postman/[email protected]
jobs:
  newman-collection-run:
    executor:
      name: newman/postman-newman-docker
      tag: 5.2.0
    steps:
      - checkout
      - newman/newman-run:
          collection: ./dummy-test.postman_collection.json
          environment: ./test-env.postman_environment.json
workflows:
  version: 2
  workflow:
    jobs:
      - newman-collection-run

Thanks for the PR! We’ll review it and get it merged.

@smariapena, did updating to the latest version of newman solve your issue with 400s?

Best,

Kevin

2 Likes