bootstrap
doc
examples
library
resources
solar
templates
utils
.config
.gitignore
.gitreview
.testr.conf
.travis.yml
.vagrantplugins
Dockerfile
LICENSE
MANIFEST.in
README.md
Vagrantfile
config.yaml
docker-compose.yml
jenkins-config.yaml
requirements.txt
run.sh
run_tests.sh
setup.cfg
setup.py
snapshotter.py
test-requirements.txt
tox.ini
vagrant-settings.yaml_defaults
23 lines
496 B
YAML
23 lines
496 B
YAML
language: python
|
|
python: 2.7
|
|
sudo: false
|
|
env:
|
|
- PIP_ACCEL_CACHE=$HOME/.pip-accel-cache SOLAR_CONFIG=$TRAVIS_BUILD_DIR/.config SOLAR_SOLAR_DB_HOST=localhost
|
|
cache:
|
|
directories:
|
|
- $HOME/.pip-accel-cache
|
|
install:
|
|
- pip install pip-accel
|
|
- pip-accel install coveralls
|
|
- pip-accel install -r test-requirements.txt
|
|
script:
|
|
- tox -e pep8 && py.test --cov=solar -s solar
|
|
services:
|
|
- riak
|
|
after_success:
|
|
coveralls
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libluajit-5.1-dev
|