summaryrefslogtreecommitdiff
path: root/src/python/test/test_representations.py
blob: dba7f9521c8dd7c2adfdb1f5c8d03b816750c05b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import os
import sys
import matplotlib.pyplot as plt

def test_representations_examples():
    # Disable graphics for testing purposes
    plt.show = lambda:None
    here = os.path.dirname(os.path.realpath(__file__))
    sys.path.append(here + "/../example")
    import diagram_vectorizations_distances_kernels

    return None