I simply noticed these in the build log and wondered whether they would pose a problem:
Test/Tasty/Silver/Filter.hs:114:9: warning: [-Wincomplete-patterns]
Pattern match(es) are non-exhaustive
In an equation for ‘filter'’:
Patterns not matched:
[] (After _ _ _)
(_:_) (After _ _ _)
|
114 | filter' pth (SingleTest n t) = if prd (pth <//> n) then Just $ SingleTest n t else Nothing
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...
Test/Tasty/Silver/Interactive/Run.hs:36:1: warning: [-Wincomplete-patterns]
Pattern match(es) are non-exhaustive
In an equation for ‘wrapRunTest'’:
Patterns not matched:
[] _ (After _ _ _)
(_:_) _ (After _ _ _)
|
36 | wrapRunTest' tp f (SingleTest n t) = SingleTest n (CustomTestExec t (f (tp <//> n) n))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^...