Only test Boron in Rakefile suites on stable/boron 68/56868/2
authorDaniel Farrell <dfarrell@redhat.com>
Thu, 11 May 2017 14:56:12 +0000 (10:56 -0400)
committerDaniel Farrell <dfarrell@redhat.com>
Thu, 11 May 2017 15:14:31 +0000 (15:14 +0000)
Change-Id: Ie9f3000319c7ca8043a4d13e6ebe57562df27e5b
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
Rakefile

index c845b6e09073b00d06fde98162760753643ef879..dbe33c0b51f735be7859c4e8b294978d107487bb 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -53,11 +53,6 @@ task :cent_5test_vm do
   sh "RS_SET=centos-7 RPM_REPO='opendaylight-5-testing' bundle exec rake beaker"
 end
 
-desc "Beaker tests against CentOS 7 VM with latest Carbon testing RPM"
-task :cent_6test_vm do
-  sh "RS_SET=centos-7 RPM_REPO='opendaylight-6-testing' bundle exec rake beaker"
-end
-
 desc "Beaker tests against CentOS 7 VM with latest Boron release RPM"
 task :cent_5rel_vm do
   sh "RS_SET=centos-7 RPM_REPO='opendaylight-5-release' bundle exec rake beaker"
@@ -70,11 +65,6 @@ task :cent_5test_dock do
   sh "RS_SET=centos-7-docker RPM_REPO='opendaylight-5-testing' bundle exec rake beaker"
 end
 
-desc "Beaker tests against CentOS 7 container with latest Carbon testing RPM"
-task :cent_6test_dock do
-  sh "RS_SET=centos-7-docker RPM_REPO='opendaylight-6-testing' bundle exec rake beaker"
-end
-
 desc "Beaker tests against CentOS 7 container with latest Boron release RPM"
 task :cent_5rel_dock do
   sh "RS_SET=centos-7-docker RPM_REPO='opendaylight-5-release' bundle exec rake beaker"
@@ -109,34 +99,21 @@ task :test => [
 desc "Quick and important tests"
 task :sanity=> [
   :test,
-  :cent_6test_dock,
+  :cent_5test_dock,
 ]
 
 desc "All tests, use VMs for Beaker tests"
-task :acceptance5_vm => [
+task :acceptance_vm => [
   :test,
   :cent_5rel_vm,
   :ubuntu_5rel_vm,
   :cent_5test_vm,
 ]
 
-desc "All tests, use VMs for Beaker tests"
-task :acceptance6_vm => [
-  :test,
-  :cent_6test_vm,
-]
-
 desc "All tests, use containers for Beaker tests"
-task :acceptance5_dock => [
+task :acceptance_dock => [
   :test,
   :cent_5rel_dock,
   :ubuntu_5rel_dock,
   :cent_5test_dock,
 ]
-
-# TODO: Update .deb to Carbon and add a ubuntu_6test_dock test
-desc "All tests, use containers for Beaker tests"
-task :acceptance6_dock => [
-  :test,
-  :cent_6test_dock,
-]