aboutsummaryrefslogtreecommitdiffstats
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorJake Hunsaker <jhunsake@redhat.com>2021-06-29 15:45:28 -0400
committerJake Hunsaker <jhunsake@redhat.com>2021-06-30 08:42:06 -0400
commit1efbc5a39818defec04b022b6adbaf2ae83a00b7 (patch)
tree08145fb2762e0eb083249cb6a868d029928ee843 /.cirrus.yml
parentc0d7b95ef313d368013f54182b22a541cd100497 (diff)
downloadsos-1efbc5a39818defec04b022b6adbaf2ae83a00b7.tar.gz
[cirrus] Re-order execution of component tests
Re-orders the execution of component tests to have `report` tests run last so that potential system changes made during those tests do not influence other component tests. Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 7e8061cc..f1249aab 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -111,7 +111,7 @@ report_stageone_task:
dnf -y remove sos
fi
setup_script: &setup 'pip3 install avocado-framework'
- main_script: PYTHONPATH=tests/ avocado run -t stageone tests/{report,cleaner,collect,vendor}_tests
+ main_script: PYTHONPATH=tests/ avocado run -t stageone tests/{cleaner,collect,report,vendor}_tests
# IFF the stage one tests all pass, then run stage two for latest distros
report_stagetwo_task:
@@ -141,7 +141,7 @@ report_stagetwo_task:
dnf -y install python3-pexpect
fi
setup_script: *setup
- main_script: PYTHONPATH=tests/ avocado run -t stagetwo tests/{report,cleaner,collect,vendor}_tests
+ main_script: PYTHONPATH=tests/ avocado run -t stagetwo tests/{cleaner,collect,report,vendor}_tests
report_foreman_task:
skip: "!changesInclude('.cirrus.yml', '**/{__init__,apache,foreman,foreman_tests,candlepin,pulp,pulpcore}.py')"