summaryrefslogtreecommitdiff
path: root/src/python/test/test_representations.py
blob: 4ff65f98fff38666310def71034281291a1c2c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
import os
import sys
import matplotlib.pyplot as plt
# 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
# pytest is unhappy if there are 0 tests
def test_nothing():
    return None