Skip to content

Commit

Permalink
Improve tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Nov 26, 2012
1 parent ac49bfc commit 885bafc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ env:
before_script:
- psql -c 'create database bitfield_test;' -U postgres

install: python setup.py develop
install:
- pip install Django==$DJANGO --use-mirrors
- pip install -e . --use-mirrors

script: python setup.py test

Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
test:
python setup.py test
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
'nose>=1.0',
],
tests_require=[
'django-nose==0.1.3',
'psycopg2==2.3',
'django-nose>=0.1.3',
'psycopg2>=2.3',
],
test_suite='runtests.runtests',
include_package_data=True,
Expand Down

0 comments on commit 885bafc

Please sign in to comment.