[stem/master] Delete stem.egg-info after running tox

commit fdcc616a96f6e6fd7a0a12a5b4589675473bab1d Author: Damian Johnson <atagar@torproject.org> Date: Sun Feb 1 14:36:16 2015 -0800 Delete stem.egg-info after running tox Added a gitignore for the autogenerated .tox directory, but stem.egg-info I'm less tolerant of since it isn't a hidden directory. Iirc it's not terribly important so cleaning it up after our run. --- .gitignore | 1 + tox.ini | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index f74e628..fda679b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.pyc *.swp +.tox test/data/ docs/_build/ diff --git a/tox.ini b/tox.ini index afede25..0691e51 100644 --- a/tox.ini +++ b/tox.ini @@ -6,6 +6,7 @@ skipsdist = True commands = pip install --allow-all-external -e . python run_tests.py {posargs:-a} + rm -rf stem.egg-info deps = -rrequirements.txt
participants (1)
-
atagar@torproject.org