Skip to content

Commit

Permalink
More updates for CI to run
Browse files Browse the repository at this point in the history
  • Loading branch information
Vedant P Iyer committed Sep 5, 2024
1 parent 38c1ccb commit 2621346
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 6 additions & 6 deletions dsi/backends/tests/test_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_wildfire_data_sql_artifact():
assert True

def test_wildfire_data_csv_artifact():
csvpath = '/'.join([get_git_root('.'), '../examples/data/wildfiredata.csv'])
csvpath = '/'.join([get_git_root('.'), '/home/runner/work/dsi/examples/data/wildfiredata.csv'])
dbpath = "wildfire.db"
store = Sqlite(dbpath)
store.put_artifacts_csv(csvpath, "simulation", isVerbose=isVerbose)
Expand Down Expand Up @@ -60,7 +60,7 @@ def test_jsondata_artifact_put():
assert True

def test_yosemite_data_csv_artifact():
csvpath = '/'.join([get_git_root('.'), '../examples/data/yosemite5.csv'])
csvpath = '/'.join([get_git_root('.'), '/home/runner/work/dsi/examples/data/yosemite5.csv'])
dbpath = "yosemite.db"
store = Sqlite(dbpath)
store.put_artifacts_csv(csvpath, "vision", isVerbose=isVerbose)
Expand All @@ -87,8 +87,8 @@ def test_artifact_query():

def test_yaml_reader():
reader = Sqlite("yaml-test.db")
reader.yamlToSqlite("../examples/data/schema.yml", "yaml-test", deleteSql=False)
subprocess.run(["diff", "../examples/data/compare-schema.sql", "yaml-test.sql"], stdout=open("compare_sql.txt", "w"))
reader.yamlToSqlite("/home/runner/work/dsi/examples/data/schema.yml", "yaml-test", deleteSql=False)
subprocess.run(["diff", "/home/runner/work/dsi/examples/data/compare-schema.sql", "yaml-test.sql"], stdout=open("compare_sql.txt", "w"))
file_size = os.path.getsize("compare_sql.txt")
os.remove("compare_sql.txt")
os.remove("yaml-test.sql")
Expand All @@ -98,8 +98,8 @@ def test_yaml_reader():

def test_toml_reader():
reader = Sqlite("toml-test.db")
reader.tomlToSqlite("../examples/data/schema.toml", "toml-test", deleteSql=False)
subprocess.run(["diff", "../examples/data/compare-schema.sql", "toml-test.sql"], stdout=open("compare_sql.txt", "w"))
reader.tomlToSqlite("/home/runner/work/dsi/examples/data/schema.toml", "toml-test", deleteSql=False)
subprocess.run(["diff", "/home/runner/work/dsi/examples/data/compare-schema.sql", "toml-test.sql"], stdout=open("compare_sql.txt", "w"))
file_size = os.path.getsize("compare_sql.txt")
os.remove("compare_sql.txt")
os.remove("toml-test.sql")
Expand Down
2 changes: 1 addition & 1 deletion dsi/plugins/tests/test_file_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ def get_git_root(path):

def test_csv_plugin_type():
path = '/'.join([get_git_root('.'), 'examples/data', 'wildfiredata.sqlite_db'])
back = Sqlite(filenames=path)
back = Sqlite(filename=path)

#assert type(plug.output_collector) == OrderedDict
2 changes: 2 additions & 0 deletions dsi/tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ def test_export_db_erd():
connection.commit()
connection.close()

fw.ER_Diagram("test.db").export_erd("test.db", "test1")

er_image = cv2.imread("test1.png")
assert er_image is not None #check if image generated at all

Expand Down

0 comments on commit 2621346

Please sign in to comment.