This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lnt.
from 4964fdd Fix postgres only API issue new 801a955 Load TestSuite descriptions from json files new 0d7f385 Schema migration logic for custom schemas
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/importing_data.rst | 44 ++--- docs/schema-example.yaml | 20 +++ lnt/lnttool/create.py | 2 + lnt/lnttool/viewcomparison.py | 2 +- lnt/server/config.py | 8 +- lnt/server/db/migrations/upgrade_12_to_13.py | 12 ++ lnt/server/db/testsuite.py | 187 +++++++++++++++++++++ lnt/server/db/testsuitedb.py | 99 ++++++----- lnt/server/db/util.py | 19 ++- lnt/server/db/v4db.py | 47 +++++- requirements.client.txt | 1 + tests/server/db/Inputs/customschema-report.json | 20 +++ tests/server/db/Inputs/customschema-report2.json | 20 +++ .../db/Inputs/schema-example-migratable.yaml | 28 +++ .../db/Inputs/schema-example-nomigration0.yaml | 22 +++ .../db/Inputs/schema-example-nomigration1.yaml | 24 +++ .../db/Inputs/schema-example-nomigration2.yaml | 22 +++ tests/server/db/yamlschema.shtest | 57 +++++++ 18 files changed, 550 insertions(+), 84 deletions(-) create mode 100644 docs/schema-example.yaml create mode 100644 lnt/server/db/migrations/upgrade_12_to_13.py create mode 100644 tests/server/db/Inputs/customschema-report.json create mode 100644 tests/server/db/Inputs/customschema-report2.json create mode 100644 tests/server/db/Inputs/schema-example-migratable.yaml create mode 100644 tests/server/db/Inputs/schema-example-nomigration0.yaml create mode 100644 tests/server/db/Inputs/schema-example-nomigration1.yaml create mode 100644 tests/server/db/Inputs/schema-example-nomigration2.yaml create mode 100644 tests/server/db/yamlschema.shtest