CI: Disable testing on the web

This commit is contained in:
Simon Binder 2020-01-28 20:20:43 +01:00
parent 956b87d0df
commit 727ab4d88a
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 4 additions and 3 deletions

View File

@ -7,8 +7,9 @@ pub run build_runner build --delete-conflicting-outputs
pub run test --coverage=coverage || EXIT_CODE=$?
if [ $EXIT_CODE -eq 0 ]
then pub run test -P browsers || EXIT_CODE=$?
fi
# Testing on the web doesn't work on CI (we're running into out-of-memory issues even with 12G of RAM)
#if [ $EXIT_CODE -eq 0 ]
# then pub run test -P browsers || EXIT_CODE=$?
#fi
exit $EXIT_CODE