forked from criteo/biggraphite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
26 lines (23 loc) · 773 Bytes
/
.travis.yml
File metadata and controls
26 lines (23 loc) · 773 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
language: python
install:
- pip install tox coveralls
script:
- tox
after_success:
- coveralls
# As of 2016-04 Travis provides Java 7 with precise so we use trusty
sudo: required
dist: trusty
env:
matrix:
- TOXENV=pylama
- TOXENV=pypy-coverage
- TOXENV=py27-coverage
global:
# As of 2016-04 Travis provides Cassandra 2.1 by default so we bundle our own
- CASSANDRA_VERSION=3.9
- CASSANDRA_HOME="${TRAVIS_BUILD_DIR}/apache-cassandra-${CASSANDRA_VERSION}/"
# As of 2016-04 Travis provides Cassandra 2.1 by default so we bundle our own
before_install:
- wget "http://www.us.apache.org/dist/cassandra/${CASSANDRA_VERSION}/apache-cassandra-${CASSANDRA_VERSION}-bin.tar.gz"
- tar -xzf "apache-cassandra-${CASSANDRA_VERSION}-bin.tar.gz"