Skip to content

Commit 70f85c6

Browse files
committed
Don't require test URLs for admin and account apps now.
- Legacy-Id: 429
1 parent bed8e1c commit 70f85c6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ietf/tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ def testCoverage(self):
149149
print "Not all the application URLs has test cases, there are %d missing." % (len(missing))
150150
print "The ones missing are: "
151151
for pattern in missing:
152-
print "Miss", pattern
152+
if not pattern[1:].split("/")[0] in [ "admin", "accounts" ]:
153+
print "Miss", pattern
153154
else:
154155
print "All the application URL patterns seem to have test cases."
155156
#print "Not all the application URLs has test cases."

0 commit comments

Comments
 (0)