jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/328508 )
Change subject: Add `.cache` to .gitignore ......................................................................
Add `.cache` to .gitignore
`pytest` creates a directory named`.cache` when running tests. This directory is ignored on many python projects and is also included in github's default gitignore file: https://github.com/github/gitignore/blob/master/Python.gitignore#L43
Change-Id: Ic880337a12af50f0d086a0b586417472e1ef1618 --- M .gitignore 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: Magul: Looks good to me, approved jenkins-bot: Verified
diff --git a/.gitignore b/.gitignore index 69fba31..eb433f7 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ *apicache* *pycache* /cache/* +.cache .idea pywikibot.egg-info/ pywikibot/families/
pywikibot-commits@lists.wikimedia.org