diff --git a/.rubocop.yml b/.rubocop.yml index 253be24..5e0be9f 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,3 +1,5 @@ +inherit_from: .rubocop_todo.yml + AllCops: Include: - metadata.rb diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml new file mode 100644 index 0000000..720250b --- /dev/null +++ b/.rubocop_todo.yml @@ -0,0 +1,25 @@ +# This configuration was generated by +# `rubocop --auto-gen-config` +# on 2018-08-03 05:26:02 -0700 using RuboCop version 0.55.0. +# The point is for the user to remove these configuration records +# one by one as the offenses are removed from the code base. +# Note that changes in the inspected code, or installation of new +# versions of RuboCop, may require this file to be generated again. + +# Offense count: 1 +# Cop supports --auto-correct. +Lint/RedundantWithIndex: + Exclude: + - 'recipes/setup.rb' + +# Offense count: 1 +# Cop supports --auto-correct. +Style/IfUnlessModifier: + Exclude: + - 'recipes/create_network.rb' + +# Offense count: 33 +# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns. +# URISchemes: http, https +Metrics/LineLength: + Max: 127 diff --git a/metadata.rb b/metadata.rb index 9582036..b711c73 100644 --- a/metadata.rb +++ b/metadata.rb @@ -4,7 +4,7 @@ maintainer_email 'openstack-dev@lists.openstack.org' license 'Apache-2.0' description 'Installs and configures the Tempest Integration Test Suite' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '17.0.0' +version '18.0.0' recipe 'openstack-integration-test::setup', 'Installs and configures Tempest' @@ -12,11 +12,11 @@ recipe 'openstack-integration-test::setup', 'Installs and configures Tempest' supports os end -depends 'openstack-common', '>= 17.0.0' -depends 'openstack-identity', '>= 17.0.0' -depends 'openstack-image', '>= 17.0.0' -depends 'openstack-compute', '>= 17.0.0' -depends 'openstack-block-storage', '>= 17.0.0' +depends 'openstack-common', '>= 18.0.0' +depends 'openstack-identity', '>= 18.0.0' +depends 'openstack-image', '>= 18.0.0' +depends 'openstack-compute', '>= 18.0.0' +depends 'openstack-block-storage', '>= 18.0.0' depends 'openstackclient' depends 'poise-python'