-
Notifications
You must be signed in to change notification settings - Fork 8
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
Better unit testing #54
Labels
Comments
judah
added a commit
that referenced
this issue
Dec 31, 2017
Also add explicit exports for the Config module. This is needed for `pandoc` in lts-8.0`. Deferring tests to #54.
judah
added a commit
that referenced
this issue
Dec 31, 2017
Also: - Make a datatype for a "configured" package - Add explicit exports to the Config module. This is needed for `pandoc` in lts-8.0`. Deferring tests to #54.
judah
added a commit
that referenced
this issue
Feb 3, 2018
- Fix the `xhtml` package by doing a better job filtering out built-in packages that aren't in the build plan. - Fix `Paths_` modules for packages with dashes in their name. (Unit testing deferred to #54.)
judah
added a commit
that referenced
this issue
Feb 5, 2018
For those packages specifically, add "dist/build/NAME/NAME-tmp" to the source-dirs of exes, since that's where earlier versions put their bootstrapped source files. Also wrap building executables in rules, which would have caught this infinite loop. Deferring unit testing to #54.
judah
added a commit
that referenced
this issue
Feb 8, 2018
Helps packages that turn on `NoImplicitPrelude` or `RebindableSyntax` (which implies the former). Deferring testing to #54. I couldn't find a good canonical example. Some that this fixed: `aern2-real`, `eventstore` and `numhask`.
judah
added a commit
that referenced
this issue
Feb 8, 2018
Helps packages that turn on `NoImplicitPrelude` or `RebindableSyntax` (which implies the former). Deferring testing to #54. I couldn't find a good canonical example. Some that this fixed: `aern2-real`, `eventstore` and `numhask`.
judah
added a commit
that referenced
this issue
Feb 8, 2018
Helps packages that turn on `NoImplicitPrelude` or `RebindableSyntax` (which implies the former). Deferring testing to #54. I couldn't find a good canonical example. Some that this fixed: `aern2-real`, `eventstore` and `numhask`.
judah
added a commit
that referenced
this issue
Mar 4, 2018
If a command had the inputs ["Foo", "Foo.hs" and "Foo/Bar.hs"] then the last once wouldn't be removed. We were relying on lexicographic sorting, but `'.' < '/'`. TODO #54: unit test this better.
judah
added a commit
that referenced
this issue
Mar 5, 2018
Fixes (only on Mac) `hfsevents`, as well as `fsevents` which depends on it. TODO(#54): unit test this (but only on Mac).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add explicit unit tests, instead of (or in addition to) the mass-package-compile that's currently in the CircleCI scripts.
Ideally this would let us decrease the time for CircleCI to run significantly, for example by avoiding large packages like
haskell-src-exts
andlanguage-c
.The text was updated successfully, but these errors were encountered: