From 9112f650c085169bef9ecb17ddaf287a601079cd Mon Sep 17 00:00:00 2001 From: Alexander Ershov Date: Thu, 6 Nov 2014 13:50:36 +0300 Subject: [PATCH] Fix path to the integration tests "tests/integration" -> "test/integration" --- docsite/rst/community.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/community.rst b/docsite/rst/community.rst index b89d6e61dfa..d16070239e6 100644 --- a/docsite/rst/community.rst +++ b/docsite/rst/community.rst @@ -146,7 +146,7 @@ to modify a pull request later. When submitting patches, be sure to run the unit tests first “make tests” and always use “git rebase” vs “git merge” (aliasing git pull to git pull --rebase is a great idea) to -avoid merge commits in your submissions. There are also integration tests that can be run in the "tests/integration" directory. +avoid merge commits in your submissions. There are also integration tests that can be run in the "test/integration" directory. In order to keep the history clean and better audit incoming code, we will require resubmission of pull requests that contain merge commits. Use "git pull --rebase" vs "git pull" and "git rebase" vs "git merge". Also be sure to use topic branches to keep your additions on different branches, such that they won't pick up stray commits later.