mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-16 22:20:24 +00:00
It should fix #325
This commit is contained in:
parent
58b0eb5df7
commit
da632d2841
4 changed files with 10 additions and 9 deletions
|
|
@ -1,3 +1,8 @@
|
|||
[run]
|
||||
include =
|
||||
djadmin2*
|
||||
example*
|
||||
|
||||
[report]
|
||||
# Regexes for lines to exclude from consideration
|
||||
exclude_lines =
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ before_install:
|
|||
- export PIP_INDEX_URL=https://simple.crate.io/
|
||||
install:
|
||||
- pip install -r requirements.txt
|
||||
before_script:
|
||||
- pip install --quiet --use-mirrors coveralls
|
||||
script:
|
||||
- python runtests.py
|
||||
after_script:
|
||||
- coverage run runtests.py
|
||||
after_success:
|
||||
- coverage report
|
||||
- pip install --quiet --use-mirrors coveralls
|
||||
- coveralls
|
||||
|
|
|
|||
|
|
@ -113,8 +113,6 @@ TEMPLATE_DIRS = (
|
|||
# Don't forget to use absolute paths, not relative paths.
|
||||
)
|
||||
|
||||
TEST_RUNNER = 'django_coverage.coverage_runner.CoverageRunner'
|
||||
|
||||
INSTALLED_APPS = (
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
|
|
@ -125,7 +123,6 @@ INSTALLED_APPS = (
|
|||
'django.contrib.admin',
|
||||
# Uncomment the next line to enable admin documentation:
|
||||
# 'django.contrib.admindocs',
|
||||
'django_coverage',
|
||||
'floppyforms',
|
||||
'rest_framework',
|
||||
'crispy_forms',
|
||||
|
|
|
|||
|
|
@ -3,9 +3,8 @@ django-braces>=1.0.0
|
|||
djangorestframework>=2.3.3
|
||||
django-debug-toolbar>=0.9.4
|
||||
coverage>=3.6
|
||||
django-coverage>=1.2.2
|
||||
django-extra-views>=0.6.2
|
||||
django-floppyforms>=1.1
|
||||
Sphinx>=1.2b1
|
||||
django-filter>=0.6
|
||||
django-crispy-forms>=1.3.2
|
||||
django-crispy-forms>=1.3.2
|
||||
|
|
|
|||
Loading…
Reference in a new issue