Merge pull request #2251 from matrix-org/bwindels/noe2eforredesign

disable e2e tests for PRs targeted at experimental (redesign)
This commit is contained in:
Bruno Windels 2018-10-26 09:13:30 +00:00 committed by GitHub
commit e799b30b89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,6 +27,8 @@ npm run build
npm run test npm run test
popd popd
if [ "$TRAVIS_BRANCH" != "experimental" ]
then
# run end to end tests # run end to end tests
git clone https://github.com/matrix-org/matrix-react-end-to-end-tests.git --branch master git clone https://github.com/matrix-org/matrix-react-end-to-end-tests.git --branch master
pushd matrix-react-end-to-end-tests pushd matrix-react-end-to-end-tests
@ -36,3 +38,4 @@ ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web
./install.sh ./install.sh
./run.sh --travis ./run.sh --travis
popd popd
fi