starting rocky development patch

Change-Id: I1c33766d32eff7e8dc1b3e653b94907d39fe9eb7
This commit is contained in:
Samuel Cassiba 2018-08-03 06:27:09 -07:00
parent 3ee1872f7f
commit 97d97f59b2
3 changed files with 33 additions and 6 deletions

View File

@ -1,3 +1,5 @@
inherit_from: .rubocop_todo.yml
AllCops:
Include:
- metadata.rb

25
.rubocop_todo.yml Normal file
View File

@ -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

View File

@ -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'