source: main/waeup.cas/trunk/README.rst @ 10324

Last change on this file since 10324 was 10324, checked in by uli, 11 years ago

More infos about how to run tests.

File size: 616 bytes
Line 
1waeup.cas
2*********
3
4Install for Development
5-----------------------
6
7Create a virtualenv and install basic packages::
8
9  $ virtualenv py27
10  $ source py27/bin/activate
11  (py27)$ python setup.py dev
12
13Running Tests
14-------------
15
16After `Install for Development`_ run::
17
18  (py27)$ py.test
19
20We also provide support for `tox`. You can run tests in Python 2.6,
212.7, 3.1, 3.2, and 3.3 environments (if you have the respective Python
22versions installed locally) simply by::
23
24  (py27)$ tox
25
26If you want to run tests for a specific version only, try something
27like::
28
29  (py27)$ tox -e py31
30
31to run tests for Python 3.1 only.
Note: See TracBrowser for help on using the repository browser.