Async/.drone.yml
Abel Hoogeveen 72cd7637b5
All checks were successful
continuous-integration/drone/push Build is passing
Implemented many unit tests.
2020-05-16 19:12:22 +02:00

29 lines
653 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-php test/temp/covbase.cov
environment:
TASKSTORAGE_TYPE: DummyTaskStorage
- name: redistest
image: phpunit:7.3
commands:
- vendor/bin/phpunit -c test/phpunit.xml --coverage-php test/temp/covredis.cov
environment:
SUPERVISOR_TYPE: ParallelSuperVisor
TASKSTORAGE_TYPE: RedisTaskStorage
TASKSTORAGE_REDIS_HOST: cache