mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
32 lines
779 B
YAML
32 lines
779 B
YAML
# Run tests using latest dependencies from PyPI
|
|
|
|
image: archlinux
|
|
packages:
|
|
- docker
|
|
- docker-compose
|
|
- python-pip
|
|
sources:
|
|
- https://github.com/pimutils/vdirsyncer
|
|
environment:
|
|
BUILD: test
|
|
CI: true
|
|
CODECOV_TOKEN: b834a3c5-28fa-4808-9bdb-182210069c79
|
|
DAV_SERVER: baikal radicale xandikos
|
|
REQUIREMENTS: release
|
|
# TODO: ETESYNC_TESTS
|
|
tasks:
|
|
- setup: |
|
|
sudo systemctl start docker
|
|
cd vdirsyncer
|
|
make -e install-test -e install-style
|
|
- test: |
|
|
cd vdirsyncer
|
|
# Non-system python is used for packages:
|
|
export PATH=$PATH:~/.local/bin/
|
|
make -e ci-test
|
|
make -e ci-test-storage
|
|
- style: |
|
|
cd vdirsyncer
|
|
# Non-system python is used for packages:
|
|
export PATH=$PATH:~/.local/bin/
|
|
make -e style
|