Skip to content

Commit

Permalink
.gitignore some non-ignored stuff that running tox creates
Browse files Browse the repository at this point in the history
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 <file>..." to include in what will be committed)

	brown.embedding
	model.crf.tagger
	pylintoutput
```

I'm guessing it should all be ignored.
  • Loading branch information
ExplodingCabbage committed Apr 16, 2017
1 parent 9ec8a68 commit b47ce35
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b47ce35

Please sign in to comment.