From b47ce353f259741c549b1ac6ce276c41e1df9cf5 Mon Sep 17 00:00:00 2001 From: Mark Amery Date: Sun, 16 Apr 2017 12:26:40 +0100 Subject: [PATCH] .gitignore some non-ignored stuff that running `tox` creates Previously, after I ran tox I saw all this untracked stuff in my repo: ``` mark@lunchbox:~/nltk$ git status On branch develop Untracked files: (use "git add ..." to include in what will be committed) brown.embedding model.crf.tagger pylintoutput ``` I'm guessing it should all be ignored. --- .gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 87e3450524..e3b9d53564 100644 --- a/.gitignore +++ b/.gitignore @@ -10,14 +10,16 @@ dist/ nltk.egg-info/ web/_build -# Unit test / coverage reports +# Test artifacts and coverage reports *.tox *.errs .noseids .coverage nltk/test/*.html nltk/test/tweets* -nltk/test/model.crf.tagger +model.crf.tagger +brown.embedding +pylintoutput nosetests.xml nosetests_scrubbed.xml coverage.xml