diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-03-16 12:14:53 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-03-16 12:14:53 -0400 |
commit | 3abfbf6c994f5a7e4aa918fc9fff10da99cf6f25 (patch) | |
tree | a05f69603802a40c257fab67ac95c3b60fab81d0 | |
parent | cbf0c9a75131a3a2afa54f41a88fd20c31c34bc8 (diff) | |
download | cmd2-git-3abfbf6c994f5a7e4aa918fc9fff10da99cf6f25.tar.gz |
Update .gitignore to ignore the .pytest_cache directory
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | fabfile.py | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -8,3 +8,4 @@ cmd2.egg-info .coverage .tox htmlcov +.pytest_cache @@ -25,6 +25,7 @@ def clean(): local("rm -rf dist") local("rm -rf htmlcov") local("rm -rf docs/_build") + local("rm -rf .pytest_cache") @task |