mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-29 14:56:24 +02:00
14 lines
291 B
Python
14 lines
291 B
Python
# Copyright (c) 2014, Max Zwiessele
|
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
|
"""
|
|
|
|
MaxZ
|
|
|
|
"""
|
|
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")
|