forked from tschellenbach/Stream-Framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (33 loc) · 739 Bytes
/
.travis.yml
File metadata and controls
33 lines (33 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: python
python:
- 2.7
- 3.4
- 3.5
sudo: false
addons:
apt:
packages:
- libev4
- libev-dev
notifications:
email:
- tbarbugli@gmail.com
- thierryschellenbach@gmail.com
cache: pip
env:
- CASSANDRA_DRIVER="2.7.2"
- CASSANDRA_DRIVER="3.0.0"
services:
- redis
- cassandra
before_install:
- git clone https://github.com/tbarbugli/stream_framework_example.git pinterest_example
before_script:
- echo 'DROP KEYSPACE test_stream_framework;' | /usr/local/cassandra/bin/cqlsh;
install:
- easy_install -U distribute
- pip install -e .
- pip freeze
- pip install cassandra-driver==$CASSANDRA_DRIVER
script:
- CQLENG_ALLOW_SCHEMA_MANAGEMENT="yes" py.test -sl --tb=short stream_framework/tests