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
34b6dc0
... +0 ...
a10472c
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
377 | 377 | # purchase date same as start date |
|
378 | 378 | subs.subscription.purchase_date = subs.start_date |
|
379 | 379 | tweet = tweet_content(subs, subs.partial_start_date) |
|
380 | - | assert 'subscribed for 1 month at 2 volumes per month' \ |
|
380 | + | assert 'subscribed for 1 month, 2 volumes at a time' \ |
|
381 | 381 | in tweet |
|
382 | 382 | ||
383 | 383 | def test_tweet_text_tag(self): |
212 | 212 | }) |
|
213 | 213 | # include volume count if known |
|
214 | 214 | if ev.subscription.volumes: |
|
215 | - | tweet_info['volumes'] = ' at %d volume%s per month' % \ |
|
215 | + | tweet_info['volumes'] = ', %d volume%s at a time' % \ |
|
216 | 216 | (ev.subscription.volumes, |
|
217 | 217 | '' if ev.subscription.volumes == 1 else 's') |
|
218 | 218 |
Files | Coverage |
---|---|
Project Totals (223 files) | 98.01% |
a10472c
34b6dc0