Skip to content

Commit feb8c9a

Browse files
committedJun 30, 2012
Moved tests into separate package.
Also split them into unit and functional tests.
1 parent b702c74 commit feb8c9a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+225
-344
lines changed
 

‎create_migration.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#!/usr/bin/env python
2-
import sys
3-
import os
2+
"""
3+
Convenience script to create migrations
4+
"""
45
from optparse import OptionParser
56

6-
import tests.config
7+
from tests.config import configure
8+
configure()
79

810

911
def create_migration(app_label, **kwargs):
@@ -20,4 +22,3 @@ def create_migration(app_label, **kwargs):
2022
action='store_true', default=False)
2123
(options, args) = parser.parse_args()
2224
create_migration(args[0], initial=options.initial, auto=options.auto)
23-

‎oscar/apps/partner/tests/__init__.py

-4
This file was deleted.

0 commit comments

Comments
 (0)