Skip to content

Commit

Permalink
Revert "Bug 1295536 - Validate that perfherder values are within acce…
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley committed Aug 16, 2016
1 parent 07db3a8 commit 8858fc1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 61 deletions.
40 changes: 10 additions & 30 deletions schemas/performance-artifact.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
"value": {
"description": "Summary value for subtest",
"title": "Subtest value",
"type": "number",
"minimum": -1000000000.0,
"maximum": 1000000000.0
"type": "number"
},
"lowerIsBetter": {
"description": "Whether lower values are better for subtest",
Expand All @@ -35,30 +33,22 @@
"alertThreshold": {
"description": "% change threshold before alerting",
"title": "Alert threshold",
"type": "number",
"minimum": 0.0,
"maximum": 1000.0
"type": "number"
},
"minBackWindow": {
"description": "Minimum back window to use for alerting",
"title": "Minimum back window",
"type": "number",
"minimum": 1,
"maximum": 255
"type": "number"
},
"maxBackWindow": {
"description": "Maximum back window to use for alerting",
"title": "Maximum back window",
"type": "number",
"minimum": 1,
"maximum": 255
"type": "number"
},
"foreWindow": {
"description": "Fore window to use for alerting",
"title": "Fore window",
"type": "number",
"minimum": 1,
"maximum": 255
"type": "number"
}
},
"required": [
Expand Down Expand Up @@ -90,9 +80,7 @@
},
"value": {
"title": "Suite value",
"type": "number",
"minimum": -1000000000.0,
"maximum": 1000000000.0
"type": "number"
},
"lowerIsBetter": {
"description": "Whether lower values are better for suite",
Expand All @@ -107,30 +95,22 @@
"alertThreshold": {
"description": "% change threshold before alerting",
"title": "Alert threshold",
"type": "number",
"minimum": 0.0,
"maximum": 1000.0
"type": "number"
},
"minBackWindow": {
"description": "Minimum back window to use for alerting",
"title": "Minimum back window",
"type": "integer",
"minimum": 1,
"maximum": 255
"type": "number"
},
"maxBackWindow": {
"description": "Maximum back window to use for alerting",
"title": "Maximum back window",
"type": "integer",
"minimum": 1,
"maximum": 255
"type": "number"
},
"foreWindow": {
"description": "Fore window to use for alerting",
"title": "Fore window",
"type": "integer",
"minimum": 1,
"maximum": 255
"type": "number"
}
},
"required": [
Expand Down
31 changes: 0 additions & 31 deletions tests/etl/test_perf_schema.py

This file was deleted.

0 comments on commit 8858fc1

Please sign in to comment.