~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Robert Collins
  • Date: 2005-08-24 07:40:52 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050824074052-2e9ec0dd13958d20
make tests stop at the first failure, preventing multi-page omgs

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
 
83
83
The policy about how output is presented in the text-mode client
84
84
should be only in the command-line tool.
85
 
 
86
 
Writing tests
87
 
=============
88
 
In general tests should be placed in a file named test_FOO.py where 
89
 
FOO is the logical thing under test. That file should be placed in the
90
 
tests subdirectory under the package being tested.
91
 
 
92
 
For example, tests for merge3 in bzrlib belong in bzrlib/tests/test_merge3.py.
93
 
 
94
 
Running tests
95
 
=============
96
 
Currently, bzr selftest is used to invoke tests.
97
 
You can provide a pattern argument to run a subset. For example, 
98
 
to run just the whitebox tests, run bzr selftest --pattern .*whitebox.*
99