Temporary fox for ConfigArgParse#17

This commit is contained in:
Jakub Warmuz
2015-05-04 11:56:09 +00:00
parent 8ae6a60fba
commit a2df245567
5 changed files with 8 additions and 5 deletions
Vendored
+1 -1
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/python setup.py dev
./venv/bin/pip install -r requirements.txt -e .[dev]
fi
SETUP_SCRIPT
+2 -2
View File
@@ -15,7 +15,7 @@ Now you can install the development packages:
.. code-block:: shell
./venv/bin/python setup.py dev
./venv/bin/pip install -r requirements.txt -e .[dev]
The code base, including your pull requests, **must** have 100% test
statement coverage **and** be compliant with the :ref:`coding style
@@ -48,7 +48,7 @@ synced to ``/vagrant``, so you can get started with:
vagrant ssh
cd /vagrant
./venv/bin/python setup.py install
./venv/bin/pip install -r requirements.txt
sudo ./venv/bin/letsencrypt
Support for other Linux distributions coming soon.
+1 -1
View File
@@ -53,7 +53,7 @@ Installation
.. code-block:: shell
virtualenv --no-site-packages -p python2 venv
./venv/bin/python setup.py install
./venv/bin/pip install -r requirements.txt
sudo ./venv/bin/letsencrypt
+3
View File
@@ -0,0 +1,3 @@
# https://github.com/bw2/ConfigArgParse/issues/17
-e git+https://github.com/kuba/ConfigArgParse.git#egg=ConfigArgParse
-e .
+1 -1
View File
@@ -7,7 +7,7 @@ envlist = py26,py27,cover,lint
[testenv]
commands =
pip install -e .[testing]
pip install -r requirements.txt -e .[testing]
python setup.py test -q # -q does not suppress errors
setenv =