diff --git a/Vagrantfile b/Vagrantfile index fa9195dd1..1d3b48f06 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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 diff --git a/docs/contributing.rst b/docs/contributing.rst index bfe5216ae..d5088705b 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -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