Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
7cf3a578
Kaydet (Commit)
7cf3a578
authored
Şub 10, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Updated docs and runtests.py for removal of tests from contrib.
üst
ad0be620
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
29 deletions
+5
-29
unit-tests.txt
docs/internals/contributing/writing-code/unit-tests.txt
+4
-19
runtests.py
tests/runtests.py
+1
-10
No files found.
docs/internals/contributing/writing-code/unit-tests.txt
Dosyayı görüntüle @
7cf3a578
...
...
@@ -5,11 +5,6 @@ Unit tests
Django comes with a test suite of its own, in the ``tests`` directory of the
code base. It's our policy to make sure all tests pass at all times.
The tests cover:
* Models, the database API and everything else in core Django core (``tests/``),
* :ref:`contrib-apps` (``django/contrib/<app>/tests`` or ``tests/<app>_...``).
We appreciate any and all contributions to the test suite!
The Django tests all use the testing infrastructure that ships with Django for
...
...
@@ -108,8 +103,7 @@ internationalization, type:
$ ./runtests.py --settings=path.to.settings generic_relations i18n
How do you find out the names of individual tests? Look in ``tests/`` — each
directory name there is the name of a test. Contrib app names are also valid
test names.
directory name there is the name of a test.
If you just want to run a particular class of tests, you can specify a list of
paths to individual test classes. For example, to run the ``TranslationTests``
...
...
@@ -221,18 +215,9 @@ and also excludes several directories not relevant to the results
Contrib apps
------------
Tests for contrib apps go in their respective directories under
``django/contrib``, in a ``tests.py`` file. You can split the tests over
multiple modules by using a ``tests`` directory in the normal Python way.
If you have URLs that need to be mapped, put them in ``tests/urls.py``.
To run tests for just one contrib app (e.g. ``auth``), use the same
method as above:
.. code-block:: bash
$ ./runtests.py --settings=settings django.contrib.auth
Tests for contrib apps can be found in the ``tests/`` directory, typically
under ``<app_name>_tests``. For example, tests for ``contrib.auth`` are located
in ``tests/auth_tests``.
.. _troubleshooting-unit-tests:
...
...
tests/runtests.py
Dosyayı görüntüle @
7cf3a578
...
...
@@ -9,7 +9,6 @@ import warnings
from
argparse
import
ArgumentParser
import
django
from
django
import
contrib
from
django.apps
import
apps
from
django.conf
import
settings
from
django.db
import
connection
...
...
@@ -24,9 +23,6 @@ from django.utils.deprecation import (
warnings
.
simplefilter
(
"error"
,
RemovedInDjango20Warning
)
warnings
.
simplefilter
(
"error"
,
RemovedInDjango21Warning
)
CONTRIB_MODULE_PATH
=
'django.contrib'
CONTRIB_DIR
=
os
.
path
.
dirname
(
upath
(
contrib
.
__file__
))
RUNTESTS_DIR
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
upath
(
__file__
)))
TEMPLATE_DIR
=
os
.
path
.
join
(
RUNTESTS_DIR
,
'templates'
)
...
...
@@ -74,7 +70,6 @@ def get_test_modules():
modules
=
[]
discovery_paths
=
[
(
None
,
RUNTESTS_DIR
),
(
CONTRIB_MODULE_PATH
,
CONTRIB_DIR
)
]
# GIS tests are in nested apps
if
connection
.
features
.
gis_enabled
:
...
...
@@ -177,11 +172,7 @@ def setup(verbosity, test_labels):
# Reduce given test labels to just the app module path
test_labels_set
=
set
()
for
label
in
test_labels
:
bits
=
label
.
split
(
'.'
)
if
bits
[:
2
]
==
[
'django'
,
'contrib'
]:
bits
=
bits
[:
3
]
else
:
bits
=
bits
[:
1
]
bits
=
label
.
split
(
'.'
)[:
1
]
test_labels_set
.
add
(
'.'
.
join
(
bits
))
installed_app_names
=
set
(
get_installed
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment