Fixes some code coverage issues (#7994)

* Fix code coverage issues

* Fix some code coverage stuff
This commit is contained in:
Amir Omidi
2019-10-24 15:32:43 -07:00
committed by GitHub
parent a33820ecdd
commit 86cc3f77ee
3 changed files with 11 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
PASSED_ARGS="$@"
if [[ "$OSTYPE" == "darwin"* ]] || [[ "$AGENT_OS" == "Darwin"* ]]; then
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
ROOT=$(dirname $(dirname $(realpath "$0")))
@@ -21,14 +21,14 @@ fi
# Default to only running stable tests if test grep isn't set
if [[ "$ADS_TEST_GREP" == "" ]]; then
echo Running stable tests only
export ADS_TEST_GREP=@UNSTABLE@
export ADS_TEST_GREP="@UNSTABLE@"
export ADS_TEST_INVERT_GREP=1
fi
CODE_ARGS=--grep %ADS_TEST_GREP%
CODE_ARGS="--grep $ADS_TEST_GREP"
if [[ "$ADS_TEST_INVERT_GREP" == "1" ]] || [[ "$ADS_TEST_INVERT_GREP" == "true" ]]; then
set CODE_ARGS=$CODE_ARGS --invert
CODE_ARGS="$CODE_ARGS --invert"
fi
# Node modules
@@ -42,10 +42,10 @@ if [[ "$OSTYPE" == "darwin"* ]] || [[ "$AGENT_OS" == "Darwin"* ]]; then
cd $ROOT ; ulimit -n 4096 ; \
ELECTRON_ENABLE_LOGGING=1 \
"$CODE" \
test/electron/index.js $CODE_ARGS "$@"
test/electron/index.js $CODE_ARGS $PASSED_ARGS
else
cd $ROOT ; \
ELECTRON_ENABLE_LOGGING=1 \
"$CODE" \
test/electron/index.js --no-sandbox "$@" # Electron 6 introduces a chrome-sandbox that requires root to run. This can fail. Disable sandbox via --no-sandbox.
test/electron/index.js --no-sandbox $PASSED_ARGS # Electron 6 introduces a chrome-sandbox that requires root to run. This can fail. Disable sandbox via --no-sandbox.
fi