Skip to content

Commit

Permalink
[version]
Browse files Browse the repository at this point in the history
- add pyswagger.primitives.Renderer for
#44
  • Loading branch information
mission-liao committed Nov 27, 2015
1 parent a3f9fc7 commit e42d5cc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyswagger/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.14
0.8.15
21 changes: 21 additions & 0 deletions t.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import unittest
from pyswagger.tests.test_render import ObjectTestCase as t


if __name__ == '__main__':
import logging
logger = logging.getLogger('pyswagger')

formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')

console = logging.StreamHandler()
console.setLevel(logging.DEBUG)
console.setFormatter(formatter)

logger.addHandler(console)
logger.setLevel(logging.ERROR)

unittest.TextTestRunner().run(
unittest.makeSuite(t, 'test_')
)

0 comments on commit e42d5cc

Please sign in to comment.