Skip to content

Commit 0a33a3d

Browse files
committedJun 11, 2015
Merge pull request #28 from PaesslerAG/development
MAJOR UPDATE
2 parents 772da28 + 8a45a4f commit 0a33a3d

File tree

354 files changed

+1936
-54811
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

354 files changed

+1936
-54811
lines changed
 

‎.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33
*.gz
44
*.conf
55
sensors/__init__.py
6+
dist
7+
*.egg-info
8+
build

‎.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
- "3.2"
5+
- "3.3"
6+
- "3.4"
7+
os:
8+
- linux
9+
matrix:
10+
allow_failures:
11+
- python: "3.2"
12+
- python: "3.3"
13+
- python: "3.4"
14+
branches:
15+
only:
16+
- master
17+
- development
18+
install:
19+
- pip install --upgrade pip
20+
- pip install -r requirements.txt
21+
script:
22+
- nosetests -v

0 commit comments

Comments
 (0)