Skip to content

Commit 0a7db97

Browse files
committed
Adding travis and codecov builds
1 parent aa1799f commit 0a7db97

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: python
2+
3+
python:
4+
- '2.7'
5+
6+
os:
7+
- linux
8+
9+
install:
10+
- pip install codecov
11+
12+
addons:
13+
apt:
14+
packages:
15+
- oracle-java8-set-default
16+
17+
script:
18+
- cd test
19+
- ./test.sh
20+
21+
after_success:
22+
- codecov

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# jprops
22

3+
[![Linux build status](https://travis-ci.org/hackorama/java-props-in-python.svg?branch=master&label=Linux%20OSX%20build)](https://travis-ci.org/hackorama/java-props-in-python)
4+
[![codecov.io](https://codecov.io/github/hackorama/java-props-in-python/coverage.svg?branch=master)](https://codecov.io/github/hackorama/java-props-in-python?branch=master)
5+
36
Read the key, element pairs from a java properties file
47

58
Follows the [java properties file format](http://docs.oracle.com/javase/6/docs/api/java/util/Properties.html#load(java.io.Reader)) and tested against the Java 8 version of `java.util.Properties`

0 commit comments

Comments
 (0)