From 6d803746de876069f2216208f493787cce52f994 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Fri, 15 Feb 2019 12:23:14 -0500 Subject: [PATCH] Fix irrelevant-files for legacy-grenade-dsvm-neutron-multinode-live-migration The change to irrelevant-files in I902e459093af9b82f9033d58cffcb2a628f5ec39 made it such that the job will *only* run on changes to the nova/tests/live_migration/ path which was not the intent. This fixes the regex to not run the job on changes to nova/tests/ unless those changes are in the nova/tests/live_migration/ directory. This would probably be easier to reason about long-term if the nova/tests/live_migration/ directory was moved under nova/gate/ and then we could just use the standard irrelevant-files list. That refactoring is left for another day though. Change-Id: Iff2fca18a779e70deecf8e57279e2daf9bc5529a Closes-Bug: #1816152 --- .zuul.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zuul.yaml b/.zuul.yaml index ca89c025ad68..bbbc3e519a89 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -231,7 +231,7 @@ - ^doc/.*$ - ^nova/hacking/.*$ - ^nova/locale/.*$ - - ^(?!nova/tests/live_migration/).*$ + - ^nova/tests/(?!live_migration/).*$ - ^releasenotes/.*$ - ^setup.cfg$ - ^tests-py3.txt$