thrnciar / tests / python

Forked from tests/python 4 years ago
Clone
Blob Blame History Raw
---
- hosts: localhost
  tags:
    - classic
  tasks:
    - dnf:
        name: "*"
        state: latest

- hosts: localhost
  roles:
  - role: standard-test-basic
    tags:
    - classic
    tests:
    - smoke27:
        dir: smoke
        run: VERSION=2.7 METHOD=virtualenv ./venv.sh
    - smoke34:
        dir: smoke
        run: VERSION=3.4 METHOD=virtualenv-no-download TOX=false ./venv.sh
    - smoke36:
        dir: smoke
        run: VERSION=3.6 METHOD=venv TOX=false ./venv.sh
    - smoke37:
        dir: smoke
        run: VERSION=3.7 METHOD=venv ./venv.sh
    - smoke38:
        dir: smoke
        run: VERSION=3.8 METHOD=venv ./venv.sh
    - smokepypy:
        dir: smoke
        run: VERSION=2.7 METHOD=virtualenv PYTHON=pypy ./venv.sh
    - smokepypy3:
        dir: smoke
        run: VERSION=3.5 METHOD=venv PYTHON=pypy3 ./venv.sh
    - selftest37:
        dir: selftest
        run: VERSION=3.7 X="-x test_socket -x test_asyncgen -x test_asyncio -x test_compile -x test_concurrent_futures -x test_itertools -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_shutil -x test_time -x test_multiprocessing_spawn -x test_threading -x test_wsgiref" ./parallel.sh
    - debugtest37:
        dir: selftest
        run: VERSION=3.7 PYTHON="python3-debug" X="test_ssl" ./parallel.sh
    required_packages:
    - gcc
    - virtualenv
    - python27
    - python34
    - python36
    - python37
    - python38
    - pypy
    - pypy3
    - python2-devel
    - python3-devel
    - pypy-devel
    - pypy3-devel
    - python3-tox
    - python3-tkinter
    - python3-test
    - python3-debug