#81 Enable CI via Zuul
Merged 4 years ago by adamwill. Opened 4 years ago by adamwill.

file added
+8
@@ -0,0 +1,8 @@ 

+ - job:

+     name: fedora_openqa-tox

+     run: ci/tox.yaml

+     nodeset: fedora-31-vm

+ - project:

+     check:

+       jobs:

+         - fedora_openqa-tox

file added
+14
@@ -0,0 +1,14 @@ 

+ - hosts: all

+   tasks:

+     - name: Ensure tox is installed

+       include_role:

+         name: ensure-tox

+     - name: Install all Python versions to test

+       package:

+         name: ['python37', 'python38', 'python39']

+         state: present

+       become: yes

+     - name: Run tox

+       command: tox

+       args:

+         chdir: '{{ zuul.project.src_dir }}'