Skip to content

Commit

Permalink
build: Ignore node 6 and 8 for tracing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad committed Jul 15, 2020
1 parent 6c4e9d5 commit fee0ec2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/test.sh
Expand Up @@ -8,7 +8,11 @@ if [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -le 6 ]]; then
yarn install --ignore-engines
yarn build
nvm use 6
yarn test --ignore="@sentry/browser" --ignore="@sentry/integrations" --ignore="@sentry/react" # latest version of karma doesn't run on node 6
yarn test --ignore="@sentry/browser" --ignore="@sentry/integrations" --ignore="@sentry/react" --ignore="@sentry/tracing" # latest version of karma doesn't run on node 6
elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -le 8 ]]; then
yarn install
yarn build
yarn test --ignore="@sentry/tracing"
else
yarn install
yarn build
Expand Down

0 comments on commit fee0ec2

Please sign in to comment.