From ee425a0325c6dcc931dcba5ec36980a8cb5d2f9e Mon Sep 17 00:00:00 2001 From: Adam Gastineau Date: Sun, 12 Jan 2020 09:54:37 -0800 Subject: [PATCH] Improved test instructions; no file deletion --- COMPILING.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/COMPILING.md b/COMPILING.md index bfabb488..af4ce3e2 100644 --- a/COMPILING.md +++ b/COMPILING.md @@ -21,8 +21,6 @@ Setting up the test suite for Millfork is tricky, so if you don't need the tests #### Steps -* delete the `src/test` directory - * remove all test dependencies from `build.sbt`: "org.scalatest" %% "scalatest" @@ -35,7 +33,7 @@ Setting up the test suite for Millfork is tricky, so if you don't need the tests * navigate to the project directory -* run `sbt compile` to compile the project +* run `sbt 'set test in assembly := {}' compile` (`sbt "set test in assembly := {}" compile` on Windows) to compile the project * run `sbt assembly` to build the executable jar file, it should appear in `target/scala-2.12`