1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00
appwrite/.travis.yml

28 lines
503 B
YAML
Raw Normal View History

2019-08-07 09:01:52 +12:00
language: php
2019-08-26 16:56:01 +12:00
2019-08-07 09:01:52 +12:00
php:
- '7.3'
addons:
hosts:
- appwrite.test
notifications:
email:
- eldad@appwrite.io
2019-08-26 16:56:01 +12:00
services:
- docker
before_install:
2019-09-14 15:41:16 +12:00
- composer update --ignore-platform-reqs --optimize-autoloader --no-plugins --no-scripts
- sudo service mysql stop
2019-09-14 16:46:04 +12:00
- mkdir -p tests/resources/storage/db
2019-09-14 15:41:16 +12:00
- cp -r tests/resources/mock/db tests/resources/storage/db
2019-08-07 09:01:52 +12:00
2019-08-26 16:56:01 +12:00
install:
2019-08-26 17:12:31 +12:00
- docker-compose -f tests/resources/docker-compose.yml up -d
2019-08-26 16:56:01 +12:00
- sleep 60
2019-08-07 09:01:52 +12:00
script:
2019-09-14 16:55:22 +12:00
- vendor/bin/phpunit --configuration phpunit.xml