aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorps-george <george.punter15@imperial.ac.uk>2018-03-14 19:36:25 +0000
committerGitHub <noreply@github.com>2018-03-14 19:36:25 +0000
commit3f5dd1d520aeca16a98fab8389cedab58a90b776 (patch)
tree71663b89d251f7653c76c2b278fe40005c814776 /build.sh
parent5292607551ed937e82182b76c4952dde2ad66dc3 (diff)
downloadFMark-3f5dd1d520aeca16a98fab8389cedab58a90b776.tar.gz
FMark-3f5dd1d520aeca16a98fab8389cedab58a90b776.zip
Sequential testing (#119)
* using global logger instead of local logger * finishing all logger calls for markalc * Changing expecto configs to always run tests sequentially from build.sh
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 00a5deb..ca73608 100755
--- a/build.sh
+++ b/build.sh
@@ -58,7 +58,7 @@ function cd_run_module() {
echo "########## Running $1 module tests ###########"
cd $BASE_DIR/FMark/src/Common/$1
dotnet build
- dotnet run --no-build
+ dotnet run --no-build -- --sequenced
}
if [[ $BUILD = "testall" ]]; then
@@ -72,7 +72,7 @@ if [[ $BUILD = "testall" ]] || [[ $BUILD = "all" ]] || [[ $BUILD = "fsharp" ]];
echo "Running F# tests"
cd $BASE_DIR/FMark/src/FMarkCLI
dotnet build
- dotnet run --no-build -- --test
+ dotnet run --no-build -- --test true -l info
fi
if [[ $BUILD = "all" ]] || [[ $BUILD = "js" ]]; then