Move JSON_SCHEMA to rally.consts
Change-Id: I918999306bbc6577b2b86761ea9da5e61dfa5a58
This commit is contained in:
parent
f4261e9406
commit
109d261e19
@ -39,6 +39,9 @@ TEMPEST_TEST_SETS = ("full",
|
||||
"volume")
|
||||
|
||||
|
||||
JSON_SCHEMA = "http://json-schema.org/draft-04/schema"
|
||||
|
||||
|
||||
class _TaskStatus(utils.ImmutableMixin, utils.EnumMixin):
|
||||
INIT = "init"
|
||||
VERIFYING = "verifying"
|
||||
|
@ -29,6 +29,7 @@ import six
|
||||
from rally.benchmark.context import base as base_ctx
|
||||
from rally.benchmark.scenarios import base
|
||||
from rally.common import utils as rally_utils
|
||||
from rally import consts
|
||||
from rally import objects
|
||||
|
||||
|
||||
@ -1268,7 +1269,7 @@ class FakeRunner(object):
|
||||
|
||||
CONFIG_SCHEMA = {
|
||||
"type": "object",
|
||||
"$schema": rally_utils.JSON_SCHEMA,
|
||||
"$schema": consts.JSON_SCHEMA,
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
@ -1319,7 +1320,7 @@ class FakeContext(base_ctx.Context):
|
||||
|
||||
CONFIG_SCHEMA = {
|
||||
"type": "object",
|
||||
"$schema": rally_utils.JSON_SCHEMA,
|
||||
"$schema": consts.JSON_SCHEMA,
|
||||
"properties": {
|
||||
"test": {
|
||||
"type": "integer"
|
||||
|
Loading…
Reference in New Issue
Block a user