Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit 6837552

Browse files
committed
Add Travis CI support
Tests for Python 2.6, 2.7, 3.2, 3.3, 3.4 are run in parallel. Most scripting and interaction handled by [tox-travis][1] package. Notes: * [Python 3.1 envs not supported by Travis][2] and are omitted. * Allow failure for Python 2.6 for the moment. [1]: https://github.com/ryanhiebert/tox-travis [2]: travis-ci/travis-ci#1826
1 parent 6425c16 commit 6837552

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
sudo: false
2+
language: python
3+
python:
4+
- "2.6"
5+
- "2.7"
6+
- "3.2"
7+
- "3.3"
8+
- "3.4"
9+
install: pip install tox-travis
10+
script: tox
11+
matrix:
12+
allow_failures:
13+
- python: "2.6"

README.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://travis-ci.org/madzak/python-json-logger.svg?branch=master)](https://travis-ci.org/madzak/python-json-logger)
2+
13
Overview
24
=======
35
This library is provided to allow standard python logging to output log data as json objects. With JSON we can make our logs more readable by machines and we can stop writing custom parsers for syslog type records.

0 commit comments

Comments
 (0)