mirror of
https://github.com/devfake/flox.git
synced 2024-11-14 14:12:31 +01:00
a51c4f53d2
* catch regular exception and mock file parser response * update travis * remove mocked file-parser test
32 lines
443 B
YAML
32 lines
443 B
YAML
language: php
|
|
|
|
sudo: false
|
|
|
|
php:
|
|
- 7.0
|
|
- 7.1
|
|
|
|
env:
|
|
APP_ENV: testing
|
|
CACHE_DRIVER: array
|
|
SESSION_DRIVER: array
|
|
QUEUE_DRIVER: sync
|
|
APP_KEY: 16efa6c23c2e8c705826b0e66778fbe7
|
|
DB_CONNECTION: sqlite
|
|
|
|
cache:
|
|
directories:
|
|
- backend/vendor
|
|
|
|
services:
|
|
- mysql
|
|
|
|
script:
|
|
- (cd backend && vendor/bin/phpunit --testdox)
|
|
|
|
install:
|
|
- (cd backend && composer install --prefer-source --no-interaction)
|
|
|
|
notifications:
|
|
email: false
|