Changes between Version 8 and Version 9 of HowToWriteTests
- Timestamp:
- 2015-02-25T13:34:10Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToWriteTests
v8 v9 8 8 9 9 {{{ 10 ./bin/tahoe debug trial --rterrors allmydata.test.test_fname10 python setup.py trial -s allmydata.test.test_fname 11 11 }}} 12 12 … … 28 28 29 29 {{{ 30 ./bin/tahoe @coverage run --branch --include='src/allmydata/*' @tahoe debug trial --rterrors allmydata.test.test_fname30 python setup.py trial --coverage -s allmydata.test.test_fname 31 31 }}} 32 32 33 If you installed coverage from Debian or Ubuntu then you have to name it {{{python-coverage}}}, like this: 33 34 34 35 35 {{{ 36 ./bin/tahoe @python-coverage run --branch --include='src/allmydata/*' @tahoe debug trial --rterrors allmydata.test.test_fname36 python setup.py trial --coverage -s allmydata.test.test_fname 37 37 }}} 38 38 … … 40 40 41 41 {{{ 42 ./bin/tahoe @coverage html 42 coverage html 43 }}} 44 45 If you installed coverage from Debian or Ubuntu then you have to name it {{{python-coverage}}}, like this: 46 {{{ 47 python-coverage html 43 48 }}} 44 49