forked from xmlrunner/unittest-xml-reporting
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
51 lines (32 loc) · 1.43 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
unittest-xml-reporting
----------------------
http://github.com/danielfm/unittest-xml-reporting/tree/master/
unittest-xml-reporting is a PyUnit-based TestRunner that can export test
results to XML files that can be consumed by a wide range of tools, such as
build systems, IDEs and continuous integration servers.
Installation
------------
The easiest way to install unittest-xml-reporting is via EasyInstall[1].
Follow these[2] instructions to install EasyInstall if you don't have it
already.
Then, execute the following command line to install the latest stable version
of unittest-xml-reporting:
$ sudo easy_install unittest-xml-reporting
If you use Git and want to get the latest *development* version:
$ git clone git://github.com/danielfm/unittest-xml-reporting.git
$ cd unittest-xml-reporting
$ sudo python setup.py install
Or get the latest *development* version as a tarball:
$ wget http://github.com/danielfm/unittest-xml-reporting/tarball/master
$ tar zxf danielfm-unittest-xml-reporting-XXXXXXXXXXXXXXXX.tar.gz
$ cd danielfm-unittest-xml-reporting-XXXXXXXXXXXXXXXX
$ sudo python setup.py install
Links
-----
[1] EasyInstall - http://peak.telecommunity.com/DevCenter/EasyInstall
[2] Setuptools - http://pypi.python.org/pypi/setuptools
Authors
-------
Name: Daniel Fernandes Martins <daniel.tritone@gmail.com>
Company: Destaquenet Technology Solutions <http://www.destaquenet.com/>
--EOF