f0dfbfc3d7
RequirementsTest / build (windows-latest, 3.9) (push) Has been cancelled
RequirementsTest / build (macos-latest, 3.9) (push) Has been cancelled
RequirementsTest / build (ubuntu-latest, 3.9) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Pylint / build (3.9) (push) Has been cancelled
10 lines
238 B
Bash
10 lines
238 B
Bash
#!/bin/bash
|
|
|
|
if [ "${TRAVIS_OS_NAME}" == "osx" ]
|
|
then
|
|
brew cask install google-chrome
|
|
sudo Xvfb :99 -ac -screen 0 1024x768x8 &
|
|
export CHROME_BIN="/Applications/Google Chrome.app"
|
|
npm run test:prepare > /dev/null &
|
|
fi
|