Skip to content

Commit

Permalink
Added the Circle file and dependant logic for our own testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Walton committed Jul 4, 2014
1 parent d6a7ecd commit 8dc5153
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 72 deletions.
8 changes: 8 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
dependencies:
post:
- python setup.py develop
- pip install -r tests/requirements.txt

test:
override:
- cd tests/test_project && python manage.py test viewtest --settings=test_project.settings.ci
2 changes: 0 additions & 2 deletions dev_requirements

This file was deleted.

1 change: 1 addition & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Django==1.5.5
13 changes: 13 additions & 0 deletions tests/test_project/test_project/settings/ci.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from .base import *


DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'circle_test',
'USER': 'ubuntu',
'PASSWORD': ':',
'HOST': 'localhost',
'PORT': '5432',
},
}
9 changes: 0 additions & 9 deletions tests/views/README.md

This file was deleted.

7 changes: 0 additions & 7 deletions tests/views/cleanup_viewtest.sh

This file was deleted.

54 changes: 0 additions & 54 deletions tests/views/do_viewtest.sh

This file was deleted.

0 comments on commit 8dc5153

Please sign in to comment.