Skip to content

Commit ae5cf65

Browse files
committed
Updating the travis details so that we can actually get a build working
1 parent 2cb8471 commit ae5cf65

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.travis.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
language: python
22

33
python:
4+
- 2.6
45
- 2.7
56

67
install:
7-
- make install
8+
- pip install -r requirements.txt --use-mirrors
9+
before_script:
10+
- "pep8 ."
11+
script:
12+
- python setup.py test

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
nagioscheck==0.1.6
22
setuptools>=3.4.0
33
pip>=1.4
4+
pep8==1.2

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
nagios-elasticsearch is a selection of nagios plugins that will monitor
99
a selection of ElasticSearch cluster metrics like Unassigned Shards, Cluster
1010
health, that all nodes in the cluster are accounted for and also the Cluster
11-
JVM settings
11+
JVM settings
1212
""",
1313
version="0.1.0",
1414
packages=find_packages(),
15-
author='Paul Stack'
16-
author_email='[email protected]'
15+
author='Paul Stack',
16+
author_email='[email protected]',
1717
url="https://github.com/opentable/nagios-elasticsearch",
1818
scripts=["check_es_nodes.py"],
1919
license="MIT",

0 commit comments

Comments
 (0)