1
0
mirror of https://github.com/gsi-upm/soil synced 2025-08-23 19:52:19 +00:00

Improve exporters

This commit is contained in:
J. Fernando Sánchez
2022-10-16 21:57:30 +02:00
parent 78833a9e08
commit 0efcd24d90
7 changed files with 78 additions and 35 deletions

View File

@@ -99,7 +99,7 @@ class Exporters(TestCase):
try:
for e in envs:
db = sqlite3.connect(os.path.join(simdir, f"{e.id}.sqlite"))
db = sqlite3.connect(os.path.join(simdir, f"{s.name}.sqlite"))
cur = db.cursor()
agent_entries = cur.execute("SELECT * from agents").fetchall()
env_entries = cur.execute("SELECT * from env").fetchall()