From 81d0de13aa3ec4f7c7c75befa2d05388c021e6f8 Mon Sep 17 00:00:00 2001 From: Petr Šplíchal Date: Nov 28 2018 12:39:02 +0000 Subject: Enable smoke test in the tests namespace pipeline --- diff --git a/tests.yml b/tests.yml new file mode 100644 index 0000000..e51e55f --- /dev/null +++ b/tests.yml @@ -0,0 +1,35 @@ +--- +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + tests: + - smoke27: + dir: smoke + run: VERSION=2.7 METHOD=virtualenv ./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 + - 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 + required_packages: + - gcc + - /usr/bin/virtualenv + - python27 + - python36 + - python37 + - pypy + - pypy3 + - python2-devel + - python3-devel + - pypy-devel + - pypy3-devel + - python3-tox