Changeset 8:042bf77e0223 in pyenvjasmine for README.rst


Ignore:
Timestamp:
Apr 20, 2015, 8:46:58 AM (9 years ago)
Author:
Borja Lopez <borja@…>
Branch:
default
Phase:
public
Message:

Added basic installation instructions, updated section on how to run pyenvjasmine tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • README.rst

    r3 r8  
    55testing framework.
    66
    7 .. _envjasmine : https://github.com/trevmex/EnvJasmine
     7
     8.. contents::
     9
     10
     11Installation
     12------------
     13
     14You can install pyenvjasmine using pip_ or easy_install_::
     15
     16  pip install pyenvjasmine
     17
     18::
     19
     20  easy_install pyenvjasmine
     21
     22Or you can grab the latest sources and install it from there::
     23
     24  python setup.py install
     25
     26Also, you can use it directly from the sources directory, in *development mode*
     27(useful if you want to contribute to the project)::
     28
     29  python setup.py develop
     30
     31.. note::
     32
     33   More about the *development mode* here:
     34
     35   https://packaging.python.org/en/latest/distributing.html#working-in-development-mode
    836
    937
     
    1745    nosetests --cover-package=pyenvjasmine --cover-erase \
    1846    --with-coverage --with-doctest $*
     47
     48.. note::
     49
     50   If you have installed pyenvjasmine in *development mode*, you can simply
     51   run::
     52
     53     nosetests
     54
     55   to run the tests.
    1956
    2057
     
    5289            self.assertTrue('Failed: 0' in lines)
    5390
     91
     92.. _envjasmine : https://github.com/trevmex/EnvJasmine
     93.. _pip: http://www.pip-installer.org/en/latest/index.html
     94.. _easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall
Note: See TracChangeset for help on using the changeset viewer.