Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ python:
- '3.6'
- pypy
install:
- pip install python-coveralls
- pip install python-coveralls docutils
- pip install -q -r requirements.txt
- pip install --editable .
script:
- flake8 .
- pytest -v --tb=native --cov
- |
if python -c 'import sys; sys.exit(0 if sys.version_info >= (3, 4) else 1)' ; then
python setup.py check --metadata --restructuredtext --strict
fi
after_success:
- coveralls
deploy:
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ You can use dotenv with iPython. You can either let the dotenv search for .env w


Command-line interface
=================
======================

For commandline support, use the `cli` option during installation:

Expand Down Expand Up @@ -307,7 +307,7 @@ Changelog
0.8.0
----------------------------
- ``set_key`` and ``unset_key`` only modified the affected file instead of parsing and re-writing file, this causes comments and other file entact as it is.
- Add support for ``export `` prefix in the line.
- Add support for ``export`` prefix in the line.
- Internal refractoring (`@theskumar`_)
- Allow ``load_dotenv`` and ``dotenv_values`` to work with ``StringIO())`` (`@alanjds`_)(`@theskumar`_) (`#78`_)

Expand Down