aboutsummaryrefslogtreecommitdiff
path: root/linaro_django_xmlrpc
diff options
context:
space:
mode:
authorNeil Williams <neil.williams@linaro.org>2018-06-26 09:32:45 +0100
committerNeil Williams <neil.williams@linaro.org>2018-06-26 09:32:45 +0100
commit40fcc1d18cad57f83c55425cb608ca17c54e7e90 (patch)
treedea25fca53b487fabdf6c1945530bac31d194fbf /linaro_django_xmlrpc
parenta87ad6d513d8ce78fd5998e56a3322d1558e83a1 (diff)
Silence known pytest warnings
Some warnings may be missed with the --disable-warnings option. Change-Id: Ic7daab91b6cdb76a42f81368060b4db3b1ee1ebb
Diffstat (limited to 'linaro_django_xmlrpc')
-rw-r--r--linaro_django_xmlrpc/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/linaro_django_xmlrpc/tests.py b/linaro_django_xmlrpc/tests.py
index 3f71d785c..865a14aed 100644
--- a/linaro_django_xmlrpc/tests.py
+++ b/linaro_django_xmlrpc/tests.py
@@ -22,7 +22,7 @@ Unit tests for Linaro Django XML-RPC Application
import re
import logging
import xmlrpc.client
-
+from nose.tools import nottest
from django.contrib.auth.models import User
from django.core.urlresolvers import reverse
from django_testscenarios.ubertest import TestCase, TestCaseWithScenarios
@@ -224,6 +224,7 @@ class MapperTests(TestCase):
self.assertEqual(retval, ['SourceA.a', 'SourceB.a'])
+@nottest
class TestAPI(ExposedAPI):
"""
Test API that gets exposed by the dispatcher for test runs.