mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
39 lines
879 B
YAML
39 lines
879 B
YAML
# Run tests using the packaged dependencies on ArchLinux.
|
|
|
|
image: archlinux
|
|
packages:
|
|
- docker
|
|
- docker-compose
|
|
# Build dependencies:
|
|
- python-pip
|
|
- python-wheel
|
|
# Runtime dependencies:
|
|
- python-atomicwrites
|
|
- python-click
|
|
- python-click-log
|
|
- python-click-threading
|
|
- python-requests
|
|
- python-requests-toolbelt
|
|
# Test dependencies:
|
|
- python-hypothesis
|
|
- python-pytest-cov
|
|
- python-pytest-localserver
|
|
sources:
|
|
- https://github.com/pimutils/vdirsyncer
|
|
environment:
|
|
BUILD: test
|
|
CI: true
|
|
CODECOV_TOKEN: b834a3c5-28fa-4808-9bdb-182210069c79
|
|
DAV_SERVER: radicale xandikos
|
|
REQUIREMENTS: release
|
|
# TODO: ETESYNC_TESTS
|
|
tasks:
|
|
- setup: |
|
|
sudo systemctl start docker
|
|
cd vdirsyncer
|
|
python setup.py build
|
|
sudo pip install --no-index .
|
|
- test: |
|
|
cd vdirsyncer
|
|
make -e ci-test
|
|
make -e ci-test-storage
|