From b275df13d3578cacfc8c199b7e2d54444d0298fa Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 6 Oct 2015 10:49:33 -0700 Subject: [PATCH] python2 and clarified coverage --- bootstrap/dev/venv.sh | 2 ++ docs/contributing.rst | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/bootstrap/dev/venv.sh b/bootstrap/dev/venv.sh index 90088ac9b..d6cf95bb5 100755 --- a/bootstrap/dev/venv.sh +++ b/bootstrap/dev/venv.sh @@ -1,6 +1,8 @@ #!/bin/sh -xe # Developer virtualenv setup for Let's Encrypt client +export VENV_ARGS="--python python2" + ./bootstrap/dev/_venv_common.sh \ -r requirements.txt \ -e acme[testing] \ diff --git a/docs/contributing.rst b/docs/contributing.rst index 3959ccee1..3277d321a 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -7,9 +7,9 @@ Contributing Hacking ======= -The code base, including your pull requests, **must** have 100% unit -test coverage, pass our `integration`_ tests **and** be compliant with -the :ref:`coding style `. +All changes in your pull request **must** have 100% unit test coverage, pass +our `integration`_ tests, **and** be compliant with the +:ref:`coding style `. Bootstrap