Blob Blame History Raw
---
- hosts: localhost
  roles:
    - role: standard-test-basic
  tags:
    - classic
    - atomic
    - container
  tasks:
    - name: Test block
      block:
        - name: Assert all top-level sub-modules can be imported in Python 3
          shell: python3 -c "from requests import *"
        - name: Assert all top-level sub-modules can be imported in Python 2
          shell: python2 -c "from requests import *"