-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggested build command for use with tests #53
Comments
What's your workflow, how do you think this should manifest in the atom package? ie I assume you want to see if your changes have stopped your tests building (on save?), thinking also things have to work for projects with no test folder. Or is this a documentation suggestion? |
I have a project with It was a documentation suggestion since not all projects have a Since there's no ability to have per-project settings (that I know of) it would be great to have it "just work" either way. I tried |
I'll think to add a configuration tips section at least. You could write yourself a script that does that and invoke that? |
Yeah, good idea. |
Just wanted to add that it's now necessary to also pass |
Also, @hdgarrood pointed out that |
Another update – after some discussion in purescript-contrib/pulp#192, I have {
"scripts": {
"build": "pulp build --include test"
}
} and I've set my build command for
This way:
|
I've updated the README to include some more detailed notes on build configuration and the above tip, does this make sense? |
Looks good but I think your example of using psc directly will miss FFI files. |
Did I dream that those are automagially picked up now? Is it that you don't need to explicitly say |
Yes, I think that's it. |
Updated that, apparently |
I think that might be your shell, unfortunately. The Haskell package
|
We could use |
@hdgarrood Dammit, I assumed it wasn't my shell because I tested on windows, apparently that was under bash, I'll update to the simple thing for now. I guess |
Thanks! |
I've been using
pulp build --src-path test --include src
as my build command since files in the test directory were otherwise not providing error or linter information.The text was updated successfully, but these errors were encountered: