From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 728C14446D for ; Tue, 17 Oct 2023 14:33:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="AqRRVno4" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1697553227; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=k4X2rJYOHdCvaeBUwih7qdqtpcvXyPDywDEdynTvlKA=; b=AqRRVno4UATsQ5bg7s/jLTkBzPD6kI32zvEObjlqljQU/BBMKxInRHjyhJE7/BTqtrGoBN 4JzIKGu9TkaZJUGsnf+3RnbFVAzYhqDdRv6zJ4iKB5Mt29O38WJ6WrlHc2H9zdKtO1uH3F f9s5mXgQ4jKXyqy5cAu/v7QTDVHuJSM= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-515-raAF_4X4MS2ErygVGAVi6A-1; Tue, 17 Oct 2023 10:33:45 -0400 X-MC-Unique: raAF_4X4MS2ErygVGAVi6A-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 4B9091C382A1; Tue, 17 Oct 2023 14:33:45 +0000 (UTC) Received: from smayhew-thinkpadp1gen4i.remote.csb (unknown [10.22.33.111]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 3F4741C060AE; Tue, 17 Oct 2023 14:33:45 +0000 (UTC) Received: by smayhew-thinkpadp1gen4i.remote.csb (Postfix, from userid 13752) id DB75130EE7E; Tue, 17 Oct 2023 10:33:44 -0400 (EDT) From: Scott Mayhew To: mcgrof@kernel.org Cc: jlayton@kernel.org, kdevops@lists.linux.dev Subject: [PATCH] fstests: ensure the fstests_prep_localhost tasks get executed Date: Tue, 17 Oct 2023 10:33:44 -0400 Message-ID: <20231017143344.430183-1-smayhew@redhat.com> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.7 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true Currently they get skipped because localhost isn't included in ansible-playbook --limit arg. This results in subsequent errors when parsing fstests results if the junitxml and/or junitparser modules aren't already installed. Fixes: e00143f6 ("fstests: add support for testing NFS") Signed-off-by: Scott Mayhew --- workflows/fstests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/fstests/Makefile b/workflows/fstests/Makefile index 370be411..e6346084 100644 --- a/workflows/fstests/Makefile +++ b/workflows/fstests/Makefile @@ -137,7 +137,7 @@ DYNAMIC_RUNTIME_VARS += , "fstests_start_after_test": "$(START_AFTER)" endif fstests: - $(Q)ansible-playbook $(ANSIBLE_VERBOSE) -l baseline,dev \ + $(Q)ansible-playbook $(ANSIBLE_VERBOSE) -l localhost,baseline,dev \ -f 30 -i hosts playbooks/fstests.yml --skip-tags run_tests,copy_results $(LIMIT_HOSTS) fstests-kdevops-setup: $(KDEVOPS_EXTRA_VARS) -- 2.41.0