mirror of
https://github.com/gsi-upm/soil
synced 2024-12-22 08:18:13 +00:00
Avoid writing gexf in test
This commit is contained in:
parent
c32e167fb8
commit
1cf85ea450
5
Makefile
5
Makefile
@ -1,4 +1,7 @@
|
|||||||
test:
|
quick-test:
|
||||||
docker-compose exec dev python -m pytest -s -v
|
docker-compose exec dev python -m pytest -s -v
|
||||||
|
|
||||||
|
test:
|
||||||
|
docker run -t -v $$PWD:/usr/src/app -w /usr/src/app python:3.7 python setup.py test
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
@ -1,6 +1,7 @@
|
|||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
import io
|
||||||
import yaml
|
import yaml
|
||||||
import pickle
|
import pickle
|
||||||
import networkx as nx
|
import networkx as nx
|
||||||
@ -217,7 +218,8 @@ class TestMain(TestCase):
|
|||||||
"""
|
"""
|
||||||
G = nx.random_geometric_graph(20, 0.1)
|
G = nx.random_geometric_graph(20, 0.1)
|
||||||
env = Environment(topology=G)
|
env = Environment(topology=G)
|
||||||
env.dump_gexf('/tmp/dump-gexf/prueba.gexf')
|
f = io.BytesIO()
|
||||||
|
env.dump_gexf(f)
|
||||||
|
|
||||||
def test_save_graph(self):
|
def test_save_graph(self):
|
||||||
'''
|
'''
|
||||||
|
Loading…
Reference in New Issue
Block a user