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

Update .gitignore to ignore pyc files; describe what they're for. #28

Merged
merged 1 commit into from Jan 13, 2020
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Update .gitignore to ignore pyc files; describe what they're for.

The addition of Python 2 means that we need to ignore the compiled
files that Python 2 creates which are not in the __pycache__
directory. This is added to the .gitignore file to make things
consistent.

To make the rest of the file clearer, the sections have been
annotated to show why they're being ignored.

A timeout-* rule has also been added, as this can happen when
there are hangs triggered by the fuzzer.

The .idea exclusion has been removed as it's not generated by
nor anything to do with the product. Users who have use editors
or tools which create files should use the global configuration
of their local system, rather than include them in the
project-specific .gitignore files.
  • Loading branch information
gerph committed Jan 11, 2020
commit 6e469da56a52196a5b820d6c876ed94de92ee6f5
@@ -1,7 +1,13 @@
.idea
# Files created by tests
venv
*.pyc
__pycache__

# Files created by general usage
crash-*
timeout-*

# Distribution files
dist/
build/
pythonfuzz.egg-info/
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.