Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Add gotcha about flake8-ing diff #15712

Closed
wants to merge 1 commit into from

Conversation

gfyoung
Copy link
Member

@gfyoung gfyoung commented Mar 17, 2017

The flake8-ing the diff will not catch any import style errors. I put an alternative check that is more comprehensive but will take longer to run since you will be checking entire files instead of the diff.

@jreback jreback added the Docs label Mar 17, 2017
@jreback jreback closed this in b69c877 Mar 17, 2017
@jreback jreback added this to the 0.20.0 milestone Mar 17, 2017
@jreback
Copy link
Contributor

jreback commented Mar 17, 2017

thanks!

@gfyoung gfyoung deleted the pep8-diff-gotcha branch March 17, 2017 13:11
gfyoung added a commit to forking-repos/pandas that referenced this pull request Mar 20, 2017
The grep was initially matching to "pandas,"
which is incorrect because that was also
matching files containing "pandas" in the
name but that were not in the main pandas
directory (e.g. performance test code)

Follow-up to pandas-devgh-15712

[ci skip]
jreback pushed a commit that referenced this pull request Mar 20, 2017
The grep was initially matching to "pandas," which is incorrect
because that was also matching files containing "pandas" in the name
but that were not in the main `pandas` directory (e.g. performance
test code).  This change enforces that we match to any Python files in
the main `pandas` directory.    Also picked up compatibility issue
with OSX, in which the `-r` flag does not exist.  However, `xargs`
terminates if the argument list is empty, which was the whole point of
passing in `-r` in the first place.    Follow-up to #15712

Author: gfyoung <[email protected]>

Closes #15749 from gfyoung/flake8-diff-patch and squashes the following commits:

d1543b5 [gfyoung] COMPAT: Do not run xargs with -r on OSX
da57857 [gfyoung] DOC: Patch new flake8 command grep
AnkurDedania pushed a commit to AnkurDedania/pandas that referenced this pull request Mar 21, 2017
The `flake8`-ing the diff will not catch any import style errors.  I
put an alternative check that is more comprehensive but will take
longer to run since you will be checking entire files instead of the
diff.

Author: gfyoung <[email protected]>

Closes pandas-dev#15712 from gfyoung/pep8-diff-gotcha and squashes the following commits:

42c13de [gfyoung] DOC: Add gotcha about flake8-ing diff
AnkurDedania pushed a commit to AnkurDedania/pandas that referenced this pull request Mar 21, 2017
The grep was initially matching to "pandas," which is incorrect
because that was also matching files containing "pandas" in the name
but that were not in the main `pandas` directory (e.g. performance
test code).  This change enforces that we match to any Python files in
the main `pandas` directory.    Also picked up compatibility issue
with OSX, in which the `-r` flag does not exist.  However, `xargs`
terminates if the argument list is empty, which was the whole point of
passing in `-r` in the first place.    Follow-up to pandas-dev#15712

Author: gfyoung <[email protected]>

Closes pandas-dev#15749 from gfyoung/flake8-diff-patch and squashes the following commits:

d1543b5 [gfyoung] COMPAT: Do not run xargs with -r on OSX
da57857 [gfyoung] DOC: Patch new flake8 command grep
mattip pushed a commit to mattip/pandas that referenced this pull request Apr 3, 2017
The `flake8`-ing the diff will not catch any import style errors.  I
put an alternative check that is more comprehensive but will take
longer to run since you will be checking entire files instead of the
diff.

Author: gfyoung <[email protected]>

Closes pandas-dev#15712 from gfyoung/pep8-diff-gotcha and squashes the following commits:

42c13de [gfyoung] DOC: Add gotcha about flake8-ing diff
mattip pushed a commit to mattip/pandas that referenced this pull request Apr 3, 2017
The grep was initially matching to "pandas," which is incorrect
because that was also matching files containing "pandas" in the name
but that were not in the main `pandas` directory (e.g. performance
test code).  This change enforces that we match to any Python files in
the main `pandas` directory.    Also picked up compatibility issue
with OSX, in which the `-r` flag does not exist.  However, `xargs`
terminates if the argument list is empty, which was the whole point of
passing in `-r` in the first place.    Follow-up to pandas-dev#15712

Author: gfyoung <[email protected]>

Closes pandas-dev#15749 from gfyoung/flake8-diff-patch and squashes the following commits:

d1543b5 [gfyoung] COMPAT: Do not run xargs with -r on OSX
da57857 [gfyoung] DOC: Patch new flake8 command grep
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants