2016-03-25 01:18:05 -07:00
|
|
|
addons:
|
|
|
|
hosts:
|
|
|
|
- localhost
|
2016-03-25 05:21:45 -07:00
|
|
|
sudo: false
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints
|
|
|
|
language: php
|
|
|
|
|
|
|
|
# list any PHP version you want to test against
|
|
|
|
php:
|
2016-12-14 11:01:32 -08:00
|
|
|
- 5.6
|
2016-03-25 01:18:05 -07:00
|
|
|
- 7.0
|
|
|
|
|
|
|
|
# execute any number of scripts before the test run, custom env's are available as variables
|
|
|
|
before_script:
|
|
|
|
- phantomjs --webdriver=4444 &
|
2016-12-19 11:04:28 -08:00
|
|
|
- sleep 4
|
2016-04-12 23:43:53 -07:00
|
|
|
- mysql -e "create database IF NOT EXISTS snipeit_unit;" -utravis
|
2016-03-25 01:18:05 -07:00
|
|
|
- composer self-update
|
|
|
|
- composer install -n --prefer-source
|
|
|
|
- chmod -R 777 storage
|
2016-12-19 11:04:28 -08:00
|
|
|
- php artisan migrate --env=testing-ci --database=mysql --force
|
2016-03-25 01:18:05 -07:00
|
|
|
- ./vendor/bin/codecept build
|
2016-12-19 11:04:28 -08:00
|
|
|
- php artisan key:generate --env=testing-ci
|
|
|
|
- php artisan db:seed --env=testing-ci --database=mysql --force
|
|
|
|
- php artisan --env=testing-ci snipeit:create-admin --first_name=Alison --last_name=Foobar --email=me@example.com --username=snipe --password=password
|
|
|
|
- php artisan --env=testing-ci snipeit:travisci-install
|
|
|
|
- php artisan serve --env=testing-ci --port=8000 --host=localhost &
|
2016-03-25 01:18:05 -07:00
|
|
|
- sleep 5
|
|
|
|
- pip install --user codecov
|
|
|
|
- sleep 5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# omitting "script:" will default to phpunit
|
|
|
|
# use the $DB env variable to determine the phpunit.xml to use
|
2016-12-19 11:04:28 -08:00
|
|
|
# script: ./vendor/bin/codecept run --env testing-ci
|
2016-12-19 22:00:50 -08:00
|
|
|
script:
|
|
|
|
- ./vendor/bin/codecept run unit --env testing-ci
|
2016-12-26 15:17:12 -08:00
|
|
|
# - ./vendor/bin/codecept run acceptance --env=testing-ci
|
2016-12-19 22:00:50 -08:00
|
|
|
- ./vendor/bin/codecept run functional --env=functional-travis
|
2016-04-12 21:01:39 -07:00
|
|
|
#script: ./vendor/bin/codecept run
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- codecov
|
|
|
|
|
|
|
|
after_failure:
|
2016-12-19 11:04:28 -08:00
|
|
|
- cat tests/_output/*.fail.html
|
2016-03-25 05:29:42 -07:00
|
|
|
- curl http://localhost:8000/login
|
2016-12-19 11:04:28 -08:00
|
|
|
- cat storage/logs/laravel.log
|
2016-04-12 21:01:39 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
# configure notifications (email, IRC, campfire etc)
|
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
slack:
|
|
|
|
secure: vv9we1RxB9RsrMbomSdq6D7vz/okobw87pEkgIZjB+hj1QpQ2by90gsPsOa+NgsJEFaEP7e4KlT6SH8kK+zhbmuKaUd3d1//XdcancE22LZXi6tkiB5yuR/Jhhb1LLDqyGJTB4D92hMnnCPiUjpxNA3r437ttNeYRdYIEEP3drA=
|
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- https://webhooks.gitter.im/e/5e136eb0c1965f3918d0
|
|
|
|
on_success: change # options: [always|never|change] default: always
|
|
|
|
on_failure: change # options: [always|never|change] default: always
|
|
|
|
on_start: false # default: false
|