Skip to content
Snippets Groups Projects
Commit 2399ea55 authored by Eva Bardou's avatar Eva Bardou
Browse files

Fix CI

parent 85619cf4
No related branches found
No related tags found
1 merge request!67Store created elements in a local SQLite database
Pipeline #78279 failed
This commit is part of merge request !67. Comments created here will be created in the context of that merge request.
......@@ -75,7 +75,8 @@ def test_create_tables():
with open(db_path, "rb") as generated_file:
generated = generated_file.read()
assert expected == generated
# Skipping one byte (related to SQLite version) differing only in CI
assert expected[:97] == generated[:97] and expected[99:] == generated[99:]
def test_insert_empty_lines():
......@@ -90,7 +91,8 @@ def test_insert_empty_lines():
with open(db_path, "rb") as generated_file:
generated = generated_file.read()
assert expected == generated
# Skipping one byte (related to SQLite version) differing only in CI
assert expected[:97] == generated[:97] and expected[99:] == generated[99:]
def test_insert_existing_lines():
......@@ -108,7 +110,8 @@ def test_insert_existing_lines():
with open(db_path, "rb") as after_file:
after = after_file.read()
assert before == after
# Skipping one byte (related to SQLite version) differing only in CI
assert before[:97] == after[:97] and before[99:] == after[99:]
def test_insert():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment