setup.cfg aliases don't work with pip

This commit is contained in:
Jakub Warmuz 2015-05-04 14:02:03 +00:00
parent 73ac2e36cc
commit c185480ae9
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA
2 changed files with 2 additions and 2 deletions

2
Vagrantfile vendored
View file

@ -10,7 +10,7 @@ cd /vagrant
sudo ./bootstrap/ubuntu.sh
if [ ! -d "venv" ]; then
virtualenv --no-site-packages -p python2 venv
./venv/bin/pip install -r requirements.txt -e .[dev]
./venv/bin/pip install -r requirements.txt -e .[dev,docs,testing]
fi
SETUP_SCRIPT

View file

@ -15,7 +15,7 @@ Now you can install the development packages:
.. code-block:: shell
./venv/bin/pip install -r requirements.txt -e .[dev]
./venv/bin/pip install -r requirements.txt -e .[dev,docs,testing]
The code base, including your pull requests, **must** have 100% test
statement coverage **and** be compliant with the :ref:`coding style