Open
Description
Currently in tests we have a number of different formats for referencing GitHub issues or pull requests. The sense I gather is that there are two different formats people may like:
Short:
def test_foo():
# GH#1234
...
def test_bar():
# GH#5678
...
URL:
def test_foo():
# https://github.com/pandas-dev/pandas/issues/1234
...
def test_bar():
# https://github.com/pandas-dev/pandas/pull/5678
...
Please feel free to suggest any other alternatives as well. One option is of course to continue with the status-quo: no standardization of referencing GitHub issues.
cc @pandas-dev/pandas-core