Commit 697271ce authored by Chris Mayo's avatar Chris Mayo

Don't attempt to collect pymongo test classes

parent 3c122e26
...@@ -8,11 +8,13 @@ from . import setup ...@@ -8,11 +8,13 @@ from . import setup
class TestForm(form.Form): class TestForm(form.Form):
__test__ = False
test1 = fields.StringField('Test1') test1 = fields.StringField('Test1')
test2 = fields.StringField('Test2') test2 = fields.StringField('Test2')
class TestView(ModelView): class TestView(ModelView):
__test__ = False
column_list = ('test1', 'test2', 'test3', 'test4') column_list = ('test1', 'test2', 'test3', 'test4')
column_sortable_list = ('test1', 'test2') column_sortable_list = ('test1', 'test2')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment