From f26e7137c1dc818da2fccf6a45c31196f0ee6de7 Mon Sep 17 00:00:00 2001 From: Pritom Hazarika Date: Tue, 1 Oct 2019 17:48:33 +0530 Subject: [PATCH] Update contributing.rst --- doc/source/development/contributing.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/source/development/contributing.rst b/doc/source/development/contributing.rst index 3cdf9b83e96f3..2cd9c3d8c3fda 100644 --- a/doc/source/development/contributing.rst +++ b/doc/source/development/contributing.rst @@ -930,8 +930,12 @@ The ``pandas.util.testing`` module has many special ``assert`` functions that make it easier to make statements about whether Series or DataFrame objects are equivalent. The easiest way to verify that your code is correct is to explicitly construct the result you expect, then compare the actual result to -the expected correct result:: +the expected correct result +While writting the test cases for any issue mentioned in the issue tracker, mention +issue number as a comment in the code:: + + #Issue number ##NUMBER: def test_pivot(self): data = { 'index' : ['A', 'B', 'C', 'C', 'B', 'A'],