mirror of https://github.com/borgbackup/borg.git
13 lines
300 B
YAML
13 lines
300 B
YAML
language: python
|
|
python:
|
|
- "3.2"
|
|
- "3.3"
|
|
# command to install dependencies
|
|
install:
|
|
- "sudo apt-get install fakeroot"
|
|
- "sudo mount . -o remount,user_xattr"
|
|
- "pip install --use-mirrors Cython"
|
|
- "pip install -e ."
|
|
# command to run tests
|
|
script: fakeroot python -m darc.testsuite.run -vb
|