From 5f8442d50cd3ba30d5a2b4849e07a0c31c7b8970 Mon Sep 17 00:00:00 2001 From: Sharif Nassar Date: Wed, 28 Feb 2018 15:31:20 -0800 Subject: [PATCH] Point to current requirements files, delete trailing whitespace --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fd8635e..a208ba9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ of being accepted.* Consulate test suite has a couple of requirements: - * Dependencies from [requirements/testing.txt](requirements/testing.txt) are installed + * Dependencies from [requires/testing.txt](requires/testing.txt) are installed * Local Docker and [docker-compose](https://docs.docker.com/compose/) ## Installing Dependencies @@ -28,8 +28,8 @@ source env/bin/activate To install the dependencies needed to run Consulate tests, use ```bash -pip install -r requirements/testing.txt -``` +pip install -r requires/testing.txt +``` ## Starting the test dependency @@ -38,7 +38,7 @@ Prior to running tests, ensure that Consul is running via Docker using: ```bash ./bootstrap ``` - + This script uses [docker-compose](https://docs.docker.com/compose/) to launch a Consul server container that is pre-configured for the tests. In addition, it configures `build/test-environment` that is loaded by the tests with configuration information for connecting to Consul. @@ -56,5 +56,5 @@ with ``pep8`` style prior to issuing your pull request. In addition, run ``flake8`` to look for any style errors prior to submitting your PR. Both are included when the test requirements are installed. If you are fixing -formatting for existing code, please separate code-reformatting commits from +formatting for existing code, please separate code-reformatting commits from functionality changes.