diff options
author | Federico Igne <git@federicoigne.com> | 2021-10-21 11:02:21 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2021-10-21 11:02:21 +0100 |
commit | a0a22c7146b3fb0b16f6986b69c75fa6a52196bb (patch) | |
tree | a68cee74e1e1994d6469d5fe1d1796ad6050ca8d /build.sbt | |
parent | e3534ea4b8d76e9a22991ec806ab3acd6bae0fea (diff) | |
download | RSAComb-a0a22c7146b3fb0b16f6986b69c75fa6a52196bb.tar.gz RSAComb-a0a22c7146b3fb0b16f6986b69c75fa6a52196bb.zip |
Serialise and silence output in tests
Diffstat (limited to 'build.sbt')
-rw-r--r-- | build.sbt | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -41,6 +41,13 @@ lazy val root = (project in file(".")) | |||
41 | ) | 41 | ) |
42 | ) | 42 | ) |
43 | 43 | ||
44 | /** Execute all tests sequentially | ||
45 | * | ||
46 | * This is not ideal but it is an easy way to avoid bad interactions | ||
47 | * with RDFox. | ||
48 | */ | ||
49 | parallelExecution in Test := false | ||
50 | |||
44 | /** Exclude RDFox from the building process | 51 | /** Exclude RDFox from the building process |
45 | * | 52 | * |
46 | * @see https://github.com/sbt/sbt-assembly#excluding-jars-and-files | 53 | * @see https://github.com/sbt/sbt-assembly#excluding-jars-and-files |