Skip to content

Commit

Permalink
Add travis tests for python3.5/6
Browse files Browse the repository at this point in the history
  • Loading branch information
omushpapa committed Mar 27, 2018
1 parent 8b97449 commit c3e3686
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
cache: pip
before_install:
- sudo apt-get install pandoc
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ConfigReader

[![Travis-CI](https://img.shields.io/travis/giantas/pyconfigreader.svg?maxAge=2592001)](https://travis-ci.org/giantas/pyconfigreader)
[![Travis-CI](https://img.shields.io/travis/giantas/pyconfigreader.svg?maxAge=25920)](https://travis-ci.org/giantas/pyconfigreader)
[![Codacy Badge](https://api.codacy.com/project/badge/Coverage/5f3132cafe78478dbdeb081b53d3661d)](https://www.codacy.com/app/giantas/pyconfigreader?utm_source=github.com&utm_medium=referral&utm_content=giantas/pyconfigreader&utm_campaign=Badge_Coverage)
[![Issues](https://img.shields.io/github/issues-raw/giantas/pyconfigreader/website.svg)](https://github.com/giantas/pyconfigreader/issues)

Expand Down Expand Up @@ -149,7 +149,7 @@ Another alternative is calling `to_file`
from pyconfigreader import ConfigReader
config = ConfigReader(filename='config.ini')
config.set('name', 'first', section='Details')
config.to_file()
config.save() # or config.to_file()
config.close()
```

Expand Down

0 comments on commit c3e3686

Please sign in to comment.