Changeset 124
- Timestamp:
- 08/02/06 15:52:55 (2 years ago)
- Files:
-
- branches/mk/README (modified) (3 diffs)
- branches/mk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/mk/README
r121 r124 51 51 called the Cheesecake index! 52 52 53 Requirements54 ------------55 56 * `pylint <http://www.logilab.org/projects/pylint>`_ is required for57 part of the code kwalitee index computation58 * `setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_ is59 required for testing installation60 61 53 Usage examples 62 54 -------------- … … 101 93 For more options, run cheesecake.py with -h or --help. 102 94 95 Requirements 96 ------------ 97 98 * `pylint <http://www.logilab.org/projects/pylint>`_ is required for 99 part of the code kwalitee index computation 100 * `setuptools <http://peak.telecommunity.com/DevCenter/setuptools>`_ is 101 required for testing installation 102 103 103 Obtaining the source code 104 104 ------------------------- … … 139 139 :Note: Generating documentation requires `epydoc <http://epydoc.sourceforge.net/>`_ 140 140 tool installed. 141 142 Unit tests 143 ---------- 144 145 We use `nose <http://somethingaboutorange.com/mrl/projects/nose/>`_ for automatic 146 testing of our project, so if you want to test Cheesecake on your machine, please 147 install that first. Running standard set of Cheesecake unit test is as easy as:: 148 149 python setup.py test 150 151 This command is equivalent of:: 152 153 nosetests --verbose --with-doctest --doctest-tests --include unit --exe 154 155 We also have a set of functional tests, which can be run by issuing this command:: 156 157 nosetests --verbose --include functional 158 159 Functional tests can take a bit longer to complete, as they test cheesecake_index 160 script as a whole (opposed to testing modules and classes separately). 161 162 If you happen to found any of our tests failing, please don't hesitate to contact 163 us, either via 164 `cheesecake-devel mailing list <http://lists.sourceforge.net/lists/listinfo/cheesecake-devel>`_ 165 or via `Cheesecake Trac <http://pycheesecake.org/>`_. 141 166 142 167 Buildbot branches/mk/setup.py
r123 r124 11 11 os.environ['NOSE_DOCTEST_TESTS'] = 'True' 12 12 os.environ['NOSE_INCLUDE'] = 'unit' 13 os.environ['NOSE_INCLUDE_EXE'] = 'True' 13 14 14 15 setup(
