mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-27 13:56:23 +02:00
14 lines
274 B
Python
14 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()
|
|
|