Part-DB-server/.travis.yml

32 lines
791 B
YAML
Raw Normal View History

language: php
2019-10-20 14:35:19 +02:00
services:
- mysql
2019-03-27 16:28:01 +01:00
env:
2019-10-20 15:33:43 +02:00
- SYMFONY_DEPRECATIONS_HELPER=disabled APP_ENV=test # Disable deprecation warnings
2019-03-27 16:28:01 +01:00
# Test for all supported PHP versions
php:
- '7.1'
- '7.2'
- '7.3'
- '7.4snapshot'
- 'nightly'
2019-03-27 13:32:45 +01:00
install:
2019-03-27 16:00:08 +01:00
- composer install
- php bin/console --env test doctrine:database:create --if-not-exists -n
- php bin/console --env test doctrine:migrations:migrate -n
# Load fixtures (we have to truncate database by ourselves or we get foreing key valiation errors
- php bin/console --env test doctrine:query:sql "SET foreign_key_checks = 0; TRUNCATE `groups`; TRUNCATE `users`;"
2019-10-20 15:33:43 +02:00
- php bin/console --env test doctrine:fixtures:load -n
2019-03-27 16:00:08 +01:00
script:
- php bin/phpunit
matrix:
fast_finish: true
allow_failures:
- php: 7.4snapshot
- php: nightly