From 3f672f0e918c5c461008a7fc0e53e63b79083d34 Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Wed, 6 Dec 2017 09:07:43 +0800 Subject: remove deprecated dashboard code dashboard is not used anymore, substitute by Bitergia dashboard Change-Id: Iccfd634d0d404d23b09d88454dab38425359a2b8 Signed-off-by: SerenaFeng --- dashboard/dashboard/qtip/format.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 dashboard/dashboard/qtip/format.py (limited to 'dashboard/dashboard/qtip/format.py') diff --git a/dashboard/dashboard/qtip/format.py b/dashboard/dashboard/qtip/format.py deleted file mode 100644 index b78fa5b..0000000 --- a/dashboard/dashboard/qtip/format.py +++ /dev/null @@ -1,19 +0,0 @@ -#! /usr/bin/env python - - -def format_qpi(testcase): - """ - Look for these and leave any of those: - details.index - - If none are present, then return False - """ - details = testcase['details'] - if 'index' not in details: - return False - - for key, value in details.items(): - if key != 'index': - del details[key] - - return True -- cgit 1.2.3-korg