Skip to content

Commit

Permalink
Remove need for psycopg2 in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarjei Husøy committed Jun 6, 2014
1 parent dfe27b4 commit 3a886f2
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
@@ -1,7 +1,3 @@
before_script:
- psql -c 'create database wtforms_alchemy_test;' -U postgres


language: python
python:
- 2.6
Expand Down
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -34,7 +34,6 @@ def run(self):
'Jinja2>=2.3',
'docutils>=0.10',
'flexmock>=0.9.7',
'psycopg2>=2.4.6',
'WTForms-Test>=0.1.1'
],
'babel': ['Babel>=1.3'],
Expand Down
1 change: 0 additions & 1 deletion tests/test_field_exclusion.py
Expand Up @@ -23,7 +23,6 @@ def test_excludes_column_properties(self):


class TestTSVectorType(ModelFormTestCase):
dns = 'postgres://postgres@localhost/wtforms_alchemy_test'

def test_does_not_include_tsvector_typed_columns_with_default(self):
self.init(TSVectorType)
Expand Down
1 change: 0 additions & 1 deletion tests/test_types.py
Expand Up @@ -249,7 +249,6 @@ def test_choice_type_uses_custom_coerce_func(self):


class TestWeekDaysTypeConversion(ModelFormTestCase):
dns = 'postgres://postgres@localhost/wtforms_alchemy_test'

def test_weekdays_type_converts_to_weekdays_field(self):
self.init(type_=WeekDaysType)
Expand Down

0 comments on commit 3a886f2

Please sign in to comment.