From 594515bfbe1026a34f375e920a54e3e8ce2b3741 Mon Sep 17 00:00:00 2001 From: Christos Dimitroulas Date: Fri, 6 Sep 2024 06:51:53 +0300 Subject: [PATCH] Moved tests section to bottom of package.yaml to avoid issues with test-runner code injection (#1213) --- .../parallel-letter-frequency/package.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/exercises/practice/parallel-letter-frequency/package.yaml b/exercises/practice/parallel-letter-frequency/package.yaml index 7287f1b8c..94cc9901e 100644 --- a/exercises/practice/parallel-letter-frequency/package.yaml +++ b/exercises/practice/parallel-letter-frequency/package.yaml @@ -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 @@ -31,3 +23,11 @@ benchmarks: dependencies: - parallel-letter-frequency - criterion + +tests: + test: + main: Tests.hs + source-dirs: test + dependencies: + - parallel-letter-frequency + - hspec