From a661db2701e22f473a63a10438fc0d5c28a29767 Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Thu, 13 Oct 2016 17:15:15 -0700 Subject: [PATCH 1/2] Add gitignore for .cache This is a folder created when you use pyCharm to run tests, it stores useful info such as the last test that failed. --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index df2995b3..6e622224 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,7 @@ build/ # Pycharm project files .idea -eos.iml \ No newline at end of file +eos.iml + +# pyCharm cache for running tests +.cache/ From 436ca37cfa226353b59f1aeb21aa88fc063a2432 Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Thu, 13 Oct 2016 18:49:46 -0700 Subject: [PATCH 2/2] Add lots of standard exceptions from https://github.com/github/gitignore --- .gitignore | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 93 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 6e622224..c6cd9983 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,6 @@ # Compiled python files *.pyc *.pyo -__pycache__ -*.egg-info/ -dist/ -build/ # Eclipse project files .project @@ -14,5 +10,96 @@ build/ .idea eos.iml -# pyCharm cache for running tests -.cache/ +# Exceptions below from: +# https://github.com/github/gitignore + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# IPython Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# dotenv +.env + +# virtualenv +.venv/ +venv/ +ENV/ + +# Spyder project settings +.spyderproject + +# Rope project settings +.ropeproject