1NITRATE(1) User Commands NITRATE(1)
2
3
4
6 nitrate - Command line interpreter for the Nitrate Python API
7
9 nitrate
10
12 python-nitrate provides a high-level Python interface to the Nitrate
13 test case management system. The package also provides standalone
14 script 'nitrate' which allows easy experimenting with the interface
15 directly from the Python interpreter by importing all available objects
16 and enabling the readline support.
17
18 In short, after setting your configuration you can easily manipulate
19 all Nitrate objects from the command line, for example:
20
21 $ nitrate
22 >>> for case in TestRun(123):
23 ... print case
24
26 To be able to contact the Nitrate server a minimal user config file
27 ~/.nitrate has to be provided in the user home directory:
28
29 [nitrate]
30 url = https://nitrate.server/xmlrpc/
31
33 python-nitrate nitrate-notes
34
36 Petr Šplíchal <psplicha@redhat.com>
37
38
39
40
41 February 2012 NITRATE(1)