From 6b1996f153b5bd4ac895f583c567c67d29e7efba Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Wed, 29 Jul 2020 13:16:08 +0200 Subject: [PATCH] Add a configuration for Fedora CI --- tests/tests.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 tests/tests.yml diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..cfae427 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,36 @@ +--- +- hosts: localhost + tags: + - classic + tasks: + - dnf: + name: "*" + state: latest + +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + repositories: + - repo: "https://src.fedoraproject.org/tests/python.git" + dest: "python" + tests: + - marshalparser_compatibility36: + dir: python/marshalparser + run: VERSION=3.6 SAMPLE=200 test_marshalparser_compatibility.sh + - marshalparser_compatibility37: + dir: python/marshalparser + run: VERSION=3.7 SAMPLE=200 test_marshalparser_compatibility.sh + - marshalparser_compatibility38: + dir: python/marshalparser + run: VERSION=3.8 SAMPLE=200 test_marshalparser_compatibility.sh + - marshalparser_compatibility39: + dir: python/marshalparser + run: VERSION=3.9 SAMPLE=200 test_marshalparser_compatibility.sh + required_packages: + - python3.6 + - python3.7 + - python3.8 + - python3.9 + - marshalparser