Skip to content
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

Fix: Moved tests section to bottom of package.yaml to avoid issues with test-runner code injection #1213

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions exercises/practice/parallel-letter-frequency/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,6 @@ library:
# - foo # List here the packages you
# - bar # want to use in your solution.

tests:
test:
main: Tests.hs
source-dirs: test
dependencies:
- parallel-letter-frequency
- hspec

benchmarks:
bench:
ghc-options: -threaded -with-rtsopts=-N -O2
Expand All @@ -31,3 +23,11 @@ benchmarks:
dependencies:
- parallel-letter-frequency
- criterion

tests:
test:
main: Tests.hs
source-dirs: test
dependencies:
- parallel-letter-frequency
- hspec
Loading