summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2017-07-26 12:07:03 +0200
committerRémi Flamary <remi.flamary@gmail.com>2017-07-26 12:07:03 +0200
commitfac003de3d3a159bb8fb6228786479cdede2df4e (patch)
tree1e5baa3ba7f33d3141680bf77da45fc3f0343f46
parent77037cc2cb4b138d3d73d24b1ff4fc999cc64243 (diff)
author and license for tets files
-rw-r--r--test/test_bregman.py5
-rw-r--r--test/test_da.py5
-rw-r--r--test/test_dr.py5
-rw-r--r--test/test_gpu.py5
-rw-r--r--test/test_optim.py5
-rw-r--r--test/test_ot.py5
-rw-r--r--test/test_plot.py4
-rw-r--r--test/test_utils.py5
8 files changed, 39 insertions, 0 deletions
diff --git a/test/test_bregman.py b/test/test_bregman.py
index 1638ef6..4a800fd 100644
--- a/test/test_bregman.py
+++ b/test/test_bregman.py
@@ -1,3 +1,8 @@
+"""Tests for module bregman on OT with bregman projections """
+
+# Author: Remi Flamary <remi.flamary@unice.fr>
+#
+# License: MIT License
import numpy as np
import ot
diff --git a/test/test_da.py b/test/test_da.py
index a38390f..dfba83f 100644
--- a/test/test_da.py
+++ b/test/test_da.py
@@ -1,3 +1,8 @@
+"""Tests for module da on Domain Adaptation """
+
+# Author: Remi Flamary <remi.flamary@unice.fr>
+#
+# License: MIT License
import numpy as np
import ot
diff --git a/test/test_dr.py b/test/test_dr.py
index bdb920e..915012d 100644
--- a/test/test_dr.py
+++ b/test/test_dr.py
@@ -1,3 +1,8 @@
+"""Tests for module dr on Dimensionality Reduction """
+
+# Author: Remi Flamary <remi.flamary@unice.fr>
+#
+# License: MIT License
import numpy as np
import ot
diff --git a/test/test_gpu.py b/test/test_gpu.py
index 98f59f7..615c2a7 100644
--- a/test/test_gpu.py
+++ b/test/test_gpu.py
@@ -1,3 +1,8 @@
+"""Tests for module gpu for gpu acceleration """
+
+# Author: Remi Flamary <remi.flamary@unice.fr>
+#
+# License: MIT License
import numpy as np
import ot
diff --git a/test/test_optim.py b/test/test_optim.py
index 05ca895..69496a5 100644
--- a/test/test_optim.py
+++ b/test/test_optim.py
@@ -1,3 +1,8 @@
+"""Tests for module optim fro OT optimization """
+
+# Author: Remi Flamary <remi.flamary@unice.fr>
+#
+# License: MIT License
import numpy as np
import ot
diff --git a/test/test_ot.py b/test/test_ot.py
index 531e6e0..acd8718 100644
--- a/test/test_ot.py
+++ b/test/test_ot.py
@@ -1,3 +1,8 @@
+"""Tests for main module ot """
+
+# Author: Remi Flamary <remi.flamary@unice.fr>
+#
+# License: MIT License
import numpy as np
import ot
diff --git a/test/test_plot.py b/test/test_plot.py
index d826988..f7debee 100644
--- a/test/test_plot.py
+++ b/test/test_plot.py
@@ -1,4 +1,8 @@
+"""Tests for module plot for visualization """
+# Author: Remi Flamary <remi.flamary@unice.fr>
+#
+# License: MIT License
import numpy as np
import matplotlib
diff --git a/test/test_utils.py b/test/test_utils.py
index 230d126..9b140db 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -1,3 +1,8 @@
+"""Tests for module utils for timing and parallel computation """
+
+# Author: Remi Flamary <remi.flamary@unice.fr>
+#
+# License: MIT License
import ot