Renaming and rearranging cleanup.

This commit is contained in:
Carl Meyer 2011-08-23 16:04:53 -06:00
Родитель 11d289adf9
Коммит a30791b894
5 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -26,9 +26,9 @@ Python projects on your system, create the virtualenv and activate it. Then run
``ui/bin/install-reqs`` to install the dependencies for this project into your
Python environment.
You'll need to create a ``tcmui/settings/local.py`` file with some details of
your local configuration. See ``tcmui/settings/local.sample.py`` for a sample
that can be copied to ``tcmui/settings/local.py`` and modified.
You'll need to create a ``ccui/settings/local.py`` file with some details of
your local configuration. See ``ccui/settings/local.sample.py`` for a sample
that can be copied to ``ccui/settings/local.py`` and modified.
Two settings are required:

Просмотреть файл

@ -31,23 +31,23 @@ def main(basedir, cover_all=False):
]
report_kw = {"directory": os.path.join(basedir, "coverage")}
if cover_all:
# include all python modules under tcmui in report, including even those
# include all python modules under ccui in report, including even those
# the tests don't cause to be imported at all yet, so as to get a more
# accurate overall coverage figure.
py_files = include
for dirpath, dirs, filenames in os.walk(os.path.join(basedir, "tcmui")):
for dirpath, dirs, filenames in os.walk(os.path.join(basedir, "ccui")):
py_files.extend([os.path.join(dirpath, fn)
for fn in filenames if fn.endswith(".py")])
report_kw["morfs"] = py_files
report_kw["omit"] = [
"tcmui/compressor_filters.py",
"ccui/compressor_filters.py",
# non-default settings files aren't exercised in tests
"tcmui/settings.py",
"tcmui/settings_local.py",
"tcmui/settings_local.sample.py"
"ccui/settings.py",
"ccui/settings_local.py",
"ccui/settings_local.sample.py"
]
else:
report_kw["include"] = include + [os.path.join(basedir, "tcmui/*")]
report_kw["include"] = include + [os.path.join(basedir, "ccui/*")]
cov.html_report(**report_kw)
teardown_test_environment()

Просмотреть файл

@ -1 +1 @@
Subproject commit 15a3724ca0c0318756ea23d2ef4db21f7150caeb
Subproject commit a10778e0803cdd6a12b3779b445b5f524d7ee49e

Просмотреть файл

@ -1,4 +1,4 @@
{% load tcmforms %}
{% load ccforms %}
{% if field|read_only %}
<dl class="readonly">
<dt>{{ field|label_text }}</dt>