10000 Add travis-ci and coveralls integration · socrateslee/fluent-logger-python@4b690c3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4b690c3

Browse files
committed
Add travis-ci and coveralls integration
1 parent b45b4a3 commit 4b690c3

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
- "3.2"
6+
- "3.3"
7+
- "3.4"
8+
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
9+
install:
10+
- "pip install --use-mirrors -e ."
11+
- "pip install coverage coveralls"
12+
script:
13+
- "python ./setup.py nosetests"
14+
after_success:
15+
- coveralls

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# A Python structured logger for Fluentd
22

3+
[![Build Status](https://travis-ci.org/EvaSDK/fluent-logger-python.svg?branch=master)](https://travis-ci.org/EvaSDK/fluent-logger-python)
4+
[![Coverage Status](https://coveralls.io/repos/EvaSDK/fluent-logger-python/badge.png)](https://coveralls.io/r/EvaSDK/fluent-logger-python)
35

46
Many web/mobile applications generate huge amount of event logs (c,f. login, logout, purchase, follow, etc). To analyze these event logs could be really valuable for improving the service. However, the challenge is collecting these logs easily and reliably.
57

0 commit comments

Comments
 (0)
0