mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-24 14:46:42 +02:00

Coverage reporting wasn't migrated into the docker container and therefore did nothing at all.
18 lines
386 B
YAML
18 lines
386 B
YAML
sudo: required
|
|
language: python
|
|
env:
|
|
- TASK_VERSION=v2.4.0
|
|
- TASK_VERSION=v2.4.1
|
|
- TASK_VERSION=v2.4.2
|
|
- TASK_VERSION=v2.4.3
|
|
- TASK_VERSION=v2.4.4
|
|
- TASK_VERSION=v2.5.0
|
|
- TASK_VERSION=v2.5.1
|
|
services:
|
|
- docker
|
|
install:
|
|
# Build the docker container
|
|
- pushd $TRAVIS_BUILD_DIR
|
|
- docker-compose build --build-arg TASK_VERSION=$TASK_VERSION tests
|
|
script:
|
|
- make test
|