-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add capybara wait time on tests (#7568)
* add capybara wait time on tests This is causing a bunch of PRs to fail on travis * remove ajax wait time * Using local builds for Travis * reduce wait time back to original time Co-authored-by: Álax de Carvalho Alves <[email protected]>
- Loading branch information
1 parent
4691cb7
commit 4e6eddb
Showing
3 changed files
with
58 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,74 @@ | ||
sudo: required | ||
|
||
language: generic | ||
language: ruby | ||
|
||
rvm: | ||
- 2.4.4 | ||
|
||
services: | ||
- docker | ||
- redis-server | ||
|
||
addons: | ||
mariadb: '10.2' | ||
|
||
cache: | ||
directories: | ||
- $PWD/vendor/.bundle/ | ||
- $PWD/public/lib/ | ||
|
||
git: | ||
depth: false | ||
|
||
env: | ||
global: | ||
- COMPOSE_FILE=./containers/docker-compose-testing.yml | ||
- CI=true | ||
matrix: | ||
- TASK="rake test:all" | ||
- TASK="rails test test/unit" | ||
- TASK="rails test test/functional" | ||
- TASK="rails test test/integration" | ||
- TASK="rails test:system" | ||
- GENERATE_REPORT=true | ||
- RAILS_ENV=test | ||
|
||
branches: | ||
only: | ||
- master | ||
- unstable | ||
- codecov | ||
before_install: | ||
- sudo wget https://chromedriver.storage.googleapis.com/73.0.3683.68/chromedriver_linux64.zip | ||
- sudo unzip chromedriver_linux64.zip -d /usr/local/bin/ | ||
- sudo chmod +x /usr/local/bin/chromedriver | ||
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost & | ||
|
||
install: | ||
- rm -rf test/reports | ||
- cp config/database.yml.example config/database.yml | ||
- cp db/schema.rb.example db/schema.rb | ||
- docker-compose build | ||
- docker-compose up -d | ||
- docker-compose exec web sleep 15 # wait until mysql is up | ||
- netstat -ltpn | ||
- docker-compose exec web bash -c "rake db:setup" | ||
- docker-compose exec web bash -c "rake db:migrate" | ||
- docker-compose exec web bash -c "rake assets:precompile" | ||
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then bash -c "docker-compose exec web gem install danger danger-junit google-cloud-storage"; fi' | ||
|
||
script: | ||
- docker-compose exec web bash -c 'echo "$GOOGLE_APPLICATION_CREDENTIALS_JSON" > /tmp/credentials.json' # needs to be a path to a json file, so we shuffle... | ||
- docker-compose exec web bash -c "GENERATE_REPORT=true $TASK" | ||
- if [ $TASK != "rake test:all" ]; then | ||
echo -e '<?xml version="1.0" encoding="UTF-8"?>' > output.xml; | ||
tail -n +2 -q ./test/reports/TEST*.xml >> output.xml; | ||
- bundle config set path 'vendor/.bundle/' | ||
- bundle install | ||
- if [ $RAILS_ENV != 'production' ]; then | ||
yarn check || yarn install; | ||
fi | ||
- if [ $TRAVIS_PULL_REQUEST != "false" ]; then | ||
docker-compose exec web danger --verbose; | ||
- mysql -e "CREATE DATABASE plots;"; | ||
- bundle exec rake db:schema:load | ||
- bundle exec rake db:migrate | ||
- if [ "$TRAVIS_PULL_REQUEST" == "true" ]; then | ||
gem install danger danger-junit google-cloud-storage; | ||
fi | ||
- echo "$GOOGLE_APPLICATION_CREDENTIALS_JSON" > /tmp/credentials.json # needs to be a path to a json file, so we shuffle... | ||
|
||
jobs: | ||
include: | ||
- name: "Unit Tests" | ||
script: bundle exec rails test test/unit | ||
- name: "Functional Tests" | ||
script: bundle exec rails test test/functional | ||
- name: "Integration Tests" | ||
script: bundle exec rails test test/integration | ||
- name: "System Tests" | ||
script: bundle exec rails test:system > /dev/null | ||
|
||
after_script: | ||
- echo -e '<?xml version="1.0" encoding="UTF-8"?>' > output.xml; | ||
- tail -n +2 -q ./test/reports/TEST*.xml >> output.xml | ||
- if [ $TRAVIS_PULL_REQUEST == "true" ]; then | ||
bundle exec danger --verbose; | ||
fi | ||
|
||
branches: | ||
only: | ||
- master | ||
- unstable | ||
- codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters