This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lnt.
from ac7c0a6 Make a nice error message when we don't parse the test-suite json new ac6f4b3 Introduce new JSON import format
The 1 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 | 129 +++++++--------- docs/report-example.json | 26 ++++ lnt/lnttool/import_data.py | 7 +- lnt/lnttool/main.py | 5 +- lnt/lnttool/viewcomparison.py | 12 +- lnt/server/db/migrations/upgrade_11_to_12.py | 29 ++++ lnt/server/db/testsuitedb.py | 162 ++++++++------------ lnt/server/db/v4db.py | 15 +- lnt/server/ui/templates/reporting/runs.txt | 4 +- lnt/server/ui/views.py | 17 ++- lnt/testing/__init__.py | 214 ++++++++++++++++++++++++--- lnt/tests/builtintest.py | 5 +- lnt/tests/compile.py | 2 +- lnt/tests/nt.py | 2 +- lnt/tests/test_suite.py | 2 +- lnt/util/ImportData.py | 20 +-- lnt/util/ServerUtil.py | 3 +- tests/lnttool/email_tools.py | 2 +- tests/lnttool/submit.py | 22 +++ tests/server/db/ImportV4TestSuiteInstance.py | 6 +- tests/server/db/search.py | 2 +- tests/server/ui/test_api.py | 2 + 22 files changed, 438 insertions(+), 250 deletions(-) create mode 100644 docs/report-example.json create mode 100644 lnt/server/db/migrations/upgrade_11_to_12.py