Fix Zotero.automatedTest in GitHub Actions
$TRAVIS → $CI Some tests were being run that should be skipped
This commit is contained in:
parent
c0eea4dadd
commit
8f7afb4a57
1 changed files with 2 additions and 2 deletions
|
@ -185,7 +185,7 @@ if [ -z $IS_CYGWIN ]; then
|
|||
echo "`MOZ_NO_REMOTE=1 NO_EM_RESTART=1 \"$FX_EXECUTABLE\" -v`"
|
||||
fi
|
||||
|
||||
if [ "$TRAVIS" = true ]; then
|
||||
if [ -n "$CI" ]; then
|
||||
FX_ARGS="$FX_ARGS -ZoteroAutomatedTest -ZoteroTestTimeout 15000"
|
||||
fi
|
||||
|
||||
|
@ -194,7 +194,7 @@ trap "{ rm -rf \"$TEMPDIR\"; }" EXIT
|
|||
|
||||
# Check if build watch process is running
|
||||
# If not, run now
|
||||
if [[ "$TRAVIS" != true ]] && ! ps | grep scripts/build.js | grep -v grep > /dev/null; then
|
||||
if [[ -z "$CI" ]] && ! ps | grep scripts/build.js | grep -v grep > /dev/null; then
|
||||
echo
|
||||
echo "Running JS build process"
|
||||
cd "$ROOT_DIR"
|
||||
|
|
Loading…
Reference in a new issue