Skip to content

Commit

Permalink
test: exclude iOS 15 from the test matrix for now
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Mar 12, 2022
1 parent f51ca4a commit f4725f1
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions zuul.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,27 @@ if (process.env.CI === 'true') {
};
}

var isPullRequest = process.env.TRAVIS_PULL_REQUEST && process.env.TRAVIS_PULL_REQUEST !== 'false';
zuulConfig.browsers = isPullRequest ? browsers.pullRequest : browsers.all;
zuulConfig.browsers = [
{
name: 'firefox',
version: 'latest'
}, {
name: 'internet explorer',
version: '9..11'
}, {
name: 'safari',
version: '14'
}, {
name: 'iphone',
version: '14'
}, {
name: 'android',
version: '5.1..6.0'
}, {
name: 'ipad',
version: '14'
}, {
name: 'MicrosoftEdge',
version: 'latest'
}
];

0 comments on commit f4725f1

Please sign in to comment.