mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-06 02:24:17 +02:00
9 lines
306 B
Python
9 lines
306 B
Python
# Copyright (c) 2014, Max Zwiessele, GPy Authors
|
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
|
import unittest
|
|
import sys
|
|
|
|
def deepTest(reason):
|
|
if reason:
|
|
return lambda x:x
|
|
return unittest.skip("Not deep scanning, enable deepscan by adding 'deep' argument to unittest call")
|