File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1313 global :
1414 - DB=postgresql
1515 - PGHOST=localhost
16- - PGDATABASE=pgdabble_testing
16+ - PGDATABASE=postpy_testing
1717 - PGUSER=postgres
1818cache :
1919 directories :
@@ -25,8 +25,12 @@ install:
2525 - pip install wheel
2626 - pip install -r requirements.txt
2727 - pip install -r requirements-test.txt
28+ - pip install codecov
2829 - python setup.py install
2930
3031script :
3132 - python create_db.py
32- - py.test tests -s
33+ - py.test tests -s --cov
34+
35+ after_success :
36+ - codecov
Original file line number Diff line number Diff line change 1+ [ ![ Build Status] ( https://travis-ci.org/portfoliome/postpy.svg?branch=master )] ( https://travis-ci.com/portfoliome/postpy )
2+ [ ![ codecov.io] ( http://codecov.io/github/portfoliome/postpy/coverage.svg?branch=master )] ( http://codecov.io/github/portfoliome/postpy?branch=master )
3+ [ ![ Code Health] ( https://landscape.io/github/portfoliome/postpy/master/landscape.svg?style=flat )] ( https://landscape.io/github/portfoliome/postpy/master )
4+
15# postpy
26Postgresql utilities for ETL and data analysis.
37
Original file line number Diff line number Diff line change @@ -147,8 +147,6 @@ def test_split_qualified_name(self):
147147 self .assertEqual (expected , result )
148148
149149
150-
151-
152150class TestCreateTableEvent (PostgreSQLFixture , unittest .TestCase ):
153151 def setUp (self ):
154152 self .tablename = 'create_table_event'
You can’t perform that action at this time.
0 commit comments