File: issue_590__sys_modules_crap.yml

package info (click to toggle)
python-mitogen 0.3.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,456 kB
  • sloc: python: 22,134; sh: 183; makefile: 74; perl: 19; ansic: 18
file content (17 lines) | stat: -rw-r--r-- 349 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- name: regression/issue_590__sys_modules_crap.yml
  hosts: test-targets
  tasks:
  - meta: end_play
    when:
      - ansible_version_major_minor is version('2.8', '<', strict=True)

  - custom_python_uses_distro:
    register: out

  - assert:
      that:
      - "'id' in out.info"
      fail_msg: |
        out={{ out }}
  tags:
    - issue_590