From e02bf0ec97f2149dc6f38cfd2c3432dc86c1ec21 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Tue, 22 Oct 2019 10:30:40 -0400 Subject: [PATCH] Add kola-blacklist.yaml This will contain a documented list of tests known to fail right now. For details, see the corresponding cosa PR which learns how to read this, and the mantle RFE: https://github.com/coreos/coreos-assembler/pull/866 https://github.com/coreos/mantle/issues/1103 --- .cci.jenkinsfile | 5 +---- kola-blacklist.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 kola-blacklist.yaml diff --git a/.cci.jenkinsfile b/.cci.jenkinsfile index 10cbb4d14a..0e96266a0c 100644 --- a/.cci.jenkinsfile +++ b/.cci.jenkinsfile @@ -15,10 +15,7 @@ coreos.pod([image: "quay.io/coreos-assembler/coreos-assembler:latest", kvm: true stage("Kola") { dir("cosa") { coreos.shwrap(""" - # This is known to fail right now. See: - # https://github.com/coreos/fedora-coreos-tracker/issues/280 - # https://github.com/coreos/mantle/issues/1103 - cosa kola -- run --blacklist-test fcos.python + cosa kola run """) } } diff --git a/kola-blacklist.yaml b/kola-blacklist.yaml new file mode 100644 index 0000000000..6542ecd2a4 --- /dev/null +++ b/kola-blacklist.yaml @@ -0,0 +1,6 @@ +# This file documents currently known-to-fail kola tests. It is consumed by +# coreos-assembler to automatically blacklist some tests. For more information, +# see: https://github.com/coreos/coreos-assembler/pull/866. + +- pattern: fcos.python + tracker: https://github.com/coreos/mantle/issues/1103