No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
e6b9700
... +0 ...
9888f2e
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
371 | 371 | (borrow.account.persons.first().name, |
|
372 | 372 | twitterbot_100years.work_label(borrow.work)) |
|
373 | 373 | assert borrowed in tweet |
|
374 | + | # books with no date should not have a duplicate period |
|
375 | + | assert '.”.' not in tweet |
|
374 | 376 | ||
375 | 377 | # return |
|
376 | 378 | tweet = tweet_content(borrow, borrow.partial_end_date) |
230 | 230 | 'verb': verb, |
|
231 | 231 | 'work': work_text, |
|
232 | 232 | # don't duplicate period inside quotes when no year |
|
233 | - | 'period': '' if work_text[-1] == '.' else '.' |
|
233 | + | 'period': '' if work_text[-2] == '.' else '.' |
|
234 | 234 | }) |
|
235 | 235 | ||
236 | 236 | elif event_label == 'Reimbursement': |
Files | Coverage |
---|---|
mep | +<.01% 98.44% |
srcmedia/ts | 86.55% |
Project Totals (223 files) | 98.01% |
9888f2e
e6b9700