From 7b9a2bcfccc303ab4bcfa3ab144617f98b6b68f3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 26 Oct 2016 04:26:22 -0400 Subject: [PATCH] Ignore GitLab's CI .config temporary file. --- mayan/apps/common/tests/mixins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/common/tests/mixins.py b/mayan/apps/common/tests/mixins.py index f4cc360953..79f0d06d60 100644 --- a/mayan/apps/common/tests/mixins.py +++ b/mayan/apps/common/tests/mixins.py @@ -33,8 +33,8 @@ class ContentTypeCheckMixin(object): class TempfileCheckMixin(object): - # Ignore the jvmstat instrumentation file - ignore_globs = ('hsperfdata_*',) + # Ignore the jvmstat instrumentation and GitLab's CI .config files + ignore_globs = ('hsperfdata_*', '.config') def _get_temporary_entries(self): ignored_result = []