Async/.drone.yml
Abel Hoogeveen 33c81e6c18
All checks were successful
continuous-integration/drone/push Build is passing
Now with coverage
2020-05-15 21:41:39 +02:00

29 lines
610 B
YAML

kind: pipeline
type: docker
name: test
services:
- name: cache
image: redis
steps:
- name: composer
image: composer:latest
commands:
- composer install
- name: basetest
image: phpunit:7.3
commands:
- vendor/bin/phpunit -c test/phpunit.xml --coverage-text
environment:
TASKSTORAGE_TYPE: DummyTaskStorage
- name: redistest
image: phpunit:7.3
commands:
- vendor/bin/phpunit -c test/phpunit.xml --coverage-text
environment:
SUPERVISOR_TYPE: ParallelSuperVisor
TASKSTORAGE_TYPE: RedisTaskStorage
TASKSTORAGE_REDIS_HOST: cache