File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44dist /
55.env
66__pycache__
7+ .coverage
8+ .DS_Store
Original file line number Diff line number Diff line change @@ -2,12 +2,18 @@ language: python
22python :
33 - ' 2.7'
44 - ' 3.3'
5+ - ' 3.4'
56 - pypy
67install :
8+ - pip install python-coveralls
79 - pip install -q -r requirements.txt
810 - pip install --editable .
911before_script : flake8
10- script : py.test
12+ script :
13+ - coverage run --source=dotenv.py --omit='*tests*' -m py.test tests/ -v --tb=native
14+ - coverage report
15+ after_script :
16+ - coveralls
1117deploy :
1218 provider : pypi
1319 user : ' theskumar'
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+ from __future__ import unicode_literals
3+
14import os
25import warnings
36from collections import OrderedDict
Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ flake8>=2.2.3
22pytest >= 2.6.2
33sh >= 1.09
44bumpversion
5+ coverage == 3.7.1
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+ from __future__ import unicode_literals
3+
14from setuptools import setup
25
36setup (
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+ from __future__ import unicode_literals
3+
14from os .path import dirname , join
25
36import sh
You can’t perform that action at this time.
0 commit comments