Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rv-kip authored Dec 1, 2016
1 parent d5a724e commit de8d235
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,23 @@
## Summary
A generic annotation decorator for Python tests run under `nosetests` that outputs namespaced mappings to `.csv` files

## Usage
Annotate a test case with a TestRail test case id:
```
import unittest
from nose_annotator.plugin import nose_annotator
class TestSampleClass(unittest.TestCase):
@nose_annotator('testrail', '2729')
def test_numbers(self):
assert 1 == 1
```

## Quick Start
See `examples/test_sample.py` file for annotation examples.
Follow the instructions below to see plugin in action

Follow the instructions below to see plugin in action.
```
$ git clone https://github.com/rv-kip/nose-annotator.git
$ cd nose-annotator
Expand Down

0 comments on commit de8d235

Please sign in to comment.