Skip to content

Commit

Permalink
Revert more unnecessary code style changes in
Browse files Browse the repository at this point in the history
cycletime_test.py
  • Loading branch information
Dmytro Lapshyn committed Dec 16, 2020
1 parent ee6d690 commit 57312da
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions jira_agile_metrics/calculators/cycletime_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def jira(custom_fields):
),
Change(
"2018-01-03 01:00:00", [("Flagged", "Impediment", "", "customfield_100")]
), # blocked 1 day in the backlog (doesn't count towards blocked days)
), # blocked 1 day in the backlog
# (doesn't count towards blocked days)
Change(
"2018-01-03 01:01:01",
[
Expand All @@ -59,7 +60,7 @@ def jira(custom_fields):
"Backlog",
"Next",
)
]
],
),
Change(
"2018-01-04 10:01:01", [("Flagged", "", "Impediment", "customfield_100")]
Expand Down Expand Up @@ -93,7 +94,7 @@ def jira(custom_fields):
"Backlog",
"Next",
)
]
],
),
Change(
"2018-01-04 01:01:01",
Expand All @@ -103,7 +104,7 @@ def jira(custom_fields):
"Next",
"Build",
)
]
],
),
Change(
"2018-01-04 10:01:01", [("Flagged", None, "Impediment", "customfield_100")]
Expand All @@ -116,7 +117,7 @@ def jira(custom_fields):
"Build",
"QA",
)
]
],
),
Change(
"2018-01-06 01:01:01",
Expand All @@ -126,7 +127,7 @@ def jira(custom_fields):
"QA",
"Done",
)
]
],
),
],
),
Expand All @@ -151,7 +152,7 @@ def jira(custom_fields):
"Backlog",
"Next",
)
]
],
),
Change(
"2018-01-05 01:01:01",
Expand All @@ -161,7 +162,7 @@ def jira(custom_fields):
"Next",
"Build",
)
]
],
),
Change(
"2018-01-06 01:01:01",
Expand All @@ -171,15 +172,15 @@ def jira(custom_fields):
"Build",
"Next",
)
]
],
),
Change(
"2018-01-07 01:01:01",
[("Flagged", None, "Awaiting input", "customfield_100")]
[("Flagged", None, "Awaiting input", "customfield_100")],
),
Change(
"2018-01-10 10:01:01",
[("Flagged", "Awaiting input", "", "customfield_100")]
[("Flagged", "Awaiting input", "", "customfield_100")],
), # blocked 3 days
],
),
Expand Down Expand Up @@ -213,7 +214,7 @@ def jira_with_skipped_columns(custom_fields):
"Backlog",
"Next",
)
]
],
),
Change(
"2018-01-04 01:01:01",
Expand All @@ -223,9 +224,9 @@ def jira_with_skipped_columns(custom_fields):
"Next",
"Done",
),
("resolution", None, "done")
]
), # skipping columns Build and Test
("resolution", None, "done"),
],
), # skipping columns Build and Test
],
),
Issue(
Expand All @@ -249,7 +250,7 @@ def jira_with_skipped_columns(custom_fields):
"Backlog",
"Build",
)
]
],
),
Change(
"2018-01-04 01:01:01",
Expand All @@ -259,9 +260,9 @@ def jira_with_skipped_columns(custom_fields):
"Build",
"Done",
),
("resolution", None, "done")
]
), # skipping columns Build and Test
("resolution", None, "done"),
],
), # skipping columns Build and Test
],
),
],
Expand Down

0 comments on commit 57312da

Please sign in to comment.