From 39462fb5b3caa36efa350476191f9283e0913cdb Mon Sep 17 00:00:00 2001 From: Petr Šplíchal Date: Jun 11 2020 08:48:57 +0000 Subject: Create virtual test for each supported python --- diff --git a/smoke/venv.fmf b/smoke/venv.fmf index 91fee9d..3c288d5 100644 --- a/smoke/venv.fmf +++ b/smoke/venv.fmf @@ -27,10 +27,6 @@ test: ./venv.sh tier: 1 tags: [venv] -environment: - VERSION: 3.7 - METHOD: venv - TOX: true duration: 10m component+: - python2 @@ -47,3 +43,53 @@ component+: - python-setuptools - python-virtualenv - python-tox + +require: + - gcc + - virtualenv + - python3-devel + - python3-tox + +/python27: + require+: + - python27 + - python2-devel + environment: + VERSION: 2.7 + METHOD: virtualenv + +/python34: + require+: + - python34 + environment: + VERSION: 3.4 + +/python35: + require+: + - python35 + environment: + VERSION: 3.5 + +/python36: + require+: + - python36 + environment: + VERSION: 3.6 + +/python37: + require+: + - python37 + environment: + VERSION: 3.7 + +/python38: + require+: + - python38 + environment: + VERSION: 3.8 + +/python39: + require+: + - python39 + environment: + VERSION: 3.9