arion
arion copied to clipboard
Hello everyone Is stack supported?
Emacs tends to litter the directory with lockfiles if you don't turn it off (which is not recommended anyway, as you could end up editing the same file in different...
Tasty facilitates many[1](http://documentup.com/feuerbach/tasty#packages/providers) of Haskell's testing libs, and unifies their interface (commandline options and output). Maybe Arion could support Tasty? An other unifying approach is HTF[2](https://hackage.haskell.org/package/test-framework).
Let's assume the current setup ``` src/Util.hs src/Foo.hs src/Bar.hs test/UtilSpec.hs test/FooSpec.hs test/BarSpec.hs ``` where both `Foo` and `Bar` import `Util`. Now, if I hack on `Util` and have a failing...
When I am in a session where a source and test file are not associated, and I add a new import to a test file, it doesn't get associated.
I think we need to switch to ide-backend or something similar soon. It will be easier to work on issues like #18, #22, #9 (zen-mode), etc. I am not sure...
Right now when a file is changed Arion just says - ``` bash /foo/bar/baz.hs changed ``` I think it should show the user more information like what tests are associated...
Arion scans the source and test folders on startup to create source - test associations. If a new file is added or an existing file is deleted after Arion is...
It would be nice to know I'm starting from a sane place - i can run "cabal test && arion . src test" for the moment, but given that we...
Most integration-level tests in Yesod do not explicitly import the Handler module that's being tested. Tests are executed by generating HTTP requests and submitting them against the router. The router...