summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2016-11-08 09:19:30 +0100
committerRémi Flamary <remi.flamary@gmail.com>2016-11-08 09:19:30 +0100
commit2ccba4bf4bd0a13f82ffeb34c05e97c80466a030 (patch)
treee5adf6fb907cd95413759a917b58e5a398af197c /test
parentdb70a830756eb5d6a9c3d76fefc479b5a3daade6 (diff)
travis CI
Diffstat (limited to 'test')
-rw-r--r--test/test_load_module.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_load_module.py b/test/test_load_module.py
new file mode 100644
index 0000000..a04c5df
--- /dev/null
+++ b/test/test_load_module.py
@@ -0,0 +1,10 @@
+
+
+import ot
+import doctest
+
+# test lp solver
+doctest.testmod(ot.lp,verbose=True)
+
+# test bregman solver
+doctest.testmod(ot.bregman,verbose=True)