Skip to content

Commit

Permalink
fix test_graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
nperraud committed Aug 17, 2019
1 parent cc78ff2 commit 92b6fbb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pygsp/tests/test_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@
import scipy.linalg
from scipy import sparse
import networkx as nx
import graph_tool as gt
import graph_tool.generation
from skimage import data, img_as_float

from pygsp import graphs

import graph_tool as gt
import graph_tool.generation




class TestCase(unittest.TestCase):

Expand Down Expand Up @@ -970,6 +973,3 @@ def test_import_errors(self):

suite_import_export = unittest.TestLoader().loadTestsFromTestCase(TestImportExport)
suite = unittest.TestSuite([suite_graphs, suite_import_export])

if __name__ == '__main__':
unittest.TextTestRunner(verbosity=2).run(suite)

0 comments on commit 92b6fbb

Please sign in to comment.