mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-27 05:46:24 +02:00
15 lines
274 B
Python
15 lines
274 B
Python
|
|
# Copyright (c) 2013, Alan Saul
|
||
|
|
|
||
|
|
import unittest
|
||
|
|
import numpy as np
|
||
|
|
import GPy
|
||
|
|
|
||
|
|
class coxGPTests(unittest.TestCase):
|
||
|
|
def test_laplace_approx(self):
|
||
|
|
pass
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
print "Running unit tests, please be (very) patient..."
|
||
|
|
unittest.main()
|
||
|
|
|