summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-integration-constraints/ansible_collections/ns/col/tests/integration/targets/constraints/tasks/main.yml
blob: c2c1f1a4c2e4ee101ab120d10b1ec7e350236321 (plain)
1
2
3
4
5
6
7
- name: get botocore version
  command: python -c "import botocore; print(botocore.__version__)"
  register: botocore_version
- name: check botocore version
  assert:
    that:
      - 'botocore_version.stdout == "1.13.49"'