Skip to content

Commit 1869129

Browse files
committed
remove nose as a requirement so project is simpler
1 parent b4b1191 commit 1869129

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

Diff for: django_object_actions/tests/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# HACK to get factoryboy logging to shut up
22
import logging
33
logging.getLogger("factory").setLevel(logging.WARN)
4+
5+
# DJANGO 1.4 DJANGO 1.5
6+
from .test_utils import *
7+
from .tests import *

Diff for: example_project/settings.py

-4
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,8 @@ def project_dir(*paths):
6666

6767
# dev helpers
6868
'django_extensions',
69-
# testing
70-
'django_nose',
7169
)
7270

73-
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
74-
7571

7672
# STFU, Django 1.7
7773
# To be deleted once Django 1.8 testing begins

Diff for: requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ psycopg2>=2.4.5
55

66
Werkzeug>=0.8.3
77
django-extensions>=0.9
8-
django-nose
98
tox==1.7.1
109
factory-boy==2.4.1
1110
coverage==3.7.1

Diff for: tox.ini

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ commands = {envpython} example_project/manage.py test django_object_actions
2525
deps =
2626
dj_database_url
2727
django-extensions>=0.9
28-
django-nose
2928
factory-boy==2.4.1
3029

3130
[testenv:py26django14]

0 commit comments

Comments
 (0)