mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-19 06:43:06 +02:00
28 lines
630 B
YAML
28 lines
630 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
|
|
python:
|
|
- "3.5"
|
|
- "3.6"
|
|
before_install:
|
|
# Setup virtual framebuffer
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
install:
|
|
# Install coverage dependencies
|
|
- pip install coverage coveralls
|
|
# Build the docker container
|
|
- pushd $TRAVIS_BUILD_DIR
|
|
- mkdir ~/taskwiki-coverage
|
|
- docker build --build-arg TASK_VERSION=$TASK_VERSION -t test_taskwiki .
|
|
script:
|
|
- make test
|
|
after_success:
|
|
- coveralls
|