Browse Source

switched to using py.test as test suite since django-nose does not support django1.8

Miroslav Shubernetskiy 10 years ago
parent
commit
21fb97df9c
4 changed files with 16 additions and 12 deletions
  1. 10 8
      Makefile
  2. 2 1
      requirements-dev.txt
  3. 3 2
      tests/settings.py
  4. 1 1
      tox.ini

+ 10 - 8
Makefile

@@ -1,9 +1,7 @@
 .PHONY: clean-pyc clean-build docs clean
 
-NOSE_FLAGS=-s --verbosity=2
-COVER_CONFIG_FLAGS=--with-coverage --cover-package=rest_framework_bulk --cover-erase
-COVER_REPORT_FLAGS=--cover-html --cover-html-dir=htmlcov
-COVER_FLAGS=${COVER_CONFIG_FLAGS} ${COVER_REPORT_FLAGS}
+TEST_FLAGS=--verbosity=2
+COVER_FLAGS=--source=rest_framework_bulk
 
 help:
 	@echo "install - install all requirements including for testing"
@@ -51,10 +49,14 @@ lint:
 	flake8 rest_framework_bulk
 
 test:
-	python tests/manage.py test ${NOSE_FLAGS}
-
-test-coverage:
-	python tests/manage.py test ${NOSE_FLAGS} ${COVER_FLAGS}
+	python tests/manage.py test ${TEST_FLAGS}
+
+test-coverage: clean-test
+	-coverage run ${COVER_FLAGS} tests/manage.py test ${TEST_FLAGS}
+	@exit_code=$?
+	@-coverage report
+	@-coverage html
+	@exit ${exit_code}
 
 test-all:
 	tox

+ 2 - 1
requirements-dev.txt

@@ -1,5 +1,6 @@
 -r requirements.txt
 coverage
-django-nose
+django-pytest
 flake8
+pytest
 tox

+ 3 - 2
tests/settings.py

@@ -12,14 +12,15 @@ DATABASES = {
 MIDDLEWARE_CLASSES = ()
 
 INSTALLED_APPS = (
+    'django.contrib.auth',
+    'django.contrib.contenttypes',
     'django.contrib.staticfiles',
-    'django_nose',
     'rest_framework',
     'rest_framework_bulk',
     'rest_framework_bulk.tests.simple_app',
 )
 
-TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
+TEST_RUNNER = 'django_pytest.test_runner.TestRunner'
 
 STATIC_URL = '/static/'
 SECRET_KEY = 'foo'

+ 1 - 1
tox.ini

@@ -9,7 +9,7 @@ basepython =
     pypy: pypy
     pypy3: pypy3
 setenv =
-    PYTHONPATH = {toxinidir}:{toxinidir}/multinosetests
+    PYTHONPATH = {toxinidir}
 commands =
     make install-quite
     pip freeze