Sha256: 8ed19be8a4ba1b57e0ede3a572537ccc989fd6a5c06f566231da0bc141b258a6

Contents?: true

Size: 579 Bytes

Versions: 2

Compression:

Stored size: 579 Bytes

Contents

#! /bin/bash

# Update git submodules
git submodule init
git submodule update

# Set up the android environment
source tools/android/setup.sh

function run_tests() {
  ./run-tests.sh \
    -b Remote \
    --remote-executor http://localhost:9515 \
    --remote-caps="chromeOptions=androidPackage=$CHROME_APP" \
    --load-list load-list.txt \
    --verbose || exit 1
}

# We split the test runs into two groups to avoid running out of memory in Travis.
echo "^[a].*" > load-list.txt
run_tests
echo "^[^a].*" > load-list.txt
run_tests

echo "Run $ANDROID_DIR/stop.sh if finished."

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
polymer-paper-rails-0.2.0 app/assets/components/web-animations-js/run-tests-android.sh
polymer-core-rails-0.2.0 app/assets/components/web-animations-js/run-tests-android.sh