save software version in the database

The version represents the software version that was used to
import the data.
This commit is contained in:
Sarah Hoffmann
2021-03-01 20:35:15 +01:00
parent 4faefe156c
commit 3a0a4b9175
4 changed files with 76 additions and 1 deletions

View File

@@ -78,6 +78,14 @@ def test_cursor_scalar_many_rows(db):
cur.scalar('SELECT * FROM pg_tables')
def test_cursor_scalar_no_rows(db, table_factory):
table_factory('dummy')
with db.cursor() as cur:
with pytest.raises(RuntimeError):
cur.scalar('SELECT id FROM dummy')
def test_get_pg_env_add_variable(monkeypatch):
monkeypatch.delenv('PGPASSWORD', raising=False)
env = get_pg_env('user=fooF')