| Summary: | Mark more tests as slow for pytest | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Sam Sneddon [:gsnedders] <gsnedders> | ||||
| Component: | Tools / Tests | Assignee: | Sam Sneddon [:gsnedders] <gsnedders> | ||||
| Status: | NEW --- | ||||||
| Severity: | Normal | CC: | ews-watchlist, glenn, jbedard, webkit-bug-importer | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Local Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| See Also: | https://bugs.webkit.org/show_bug.cgi?id=225156 | ||||||
| Attachments: |
|
||||||
|
Description
Sam Sneddon [:gsnedders]
2021-10-15 07:04:12 PDT
Created attachment 441380 [details]
Patch
Comment on attachment 441380 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=441380&action=review > Tools/Scripts/webkitpy/style/main_unittest.py:36 > +from webkitpy.test.markers import slow Can we maybe not do this file? I only call it out because the style checker is the thing engineers not familiar with webkitpy are most likely to change. Would be good if we kept full coverage for folks making those changes, since they're unlikely to know to change the flags they're passing to test-webkitpy. (In reply to Jonathan Bedard from comment #2) > Comment on attachment 441380 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=441380&action=review > > > Tools/Scripts/webkitpy/style/main_unittest.py:36 > > +from webkitpy.test.markers import slow > > Can we maybe not do this file? I only call it out because the style checker > is the thing engineers not familiar with webkitpy are most likely to change. > Would be good if we kept full coverage for folks making those changes, since > they're unlikely to know to change the flags they're passing to > test-webkitpy. Note that this currently has no impact on `test-webkitpy`; there's probably an argument that we want to default to running all the tests and then allowing developers to opt-in to running the "not slow" subset (which once we're using pytest everywhere is just `pytest -m 'not slow'`). |