| Auto-Submit | +1 |
| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +2 |
post <- pkg == "net/http" && test ~ `^TestServeIndexHtml/.*`Because of the mandatory '/', this will exclude failures in the top-level TestServeIndexHtml test itself. Maybe it's more common to want to match the test and all its subtests too? If so, consider something like:
```suggestion
post <- pkg == "net/http" && test ~ `^TestServeIndexHtml(/.+)?$`
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +2 |
post <- pkg == "net/http" && test ~ `^TestServeIndexHtml/.*`Because of the mandatory '/', this will exclude failures in the top-level TestServeIndexHtml test itself. Maybe it's more common to want to match the test and all its subtests too? If so, consider something like:
```suggestion
post <- pkg == "net/http" && test ~ `^TestServeIndexHtml(/.+)?$`
```
In most cases a test's name is not a prefix of another, so `^TestServeIndexHtml` works just fine, and is what I usually do (and also omit the `^` as it is pretty rare a test has "Test" in the middle). We could be precise here, although it perhaps doesn't really matter much.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |