run_v1.py 718 B

1234567891011121314151617181920212223242526272829303132333435
  1. import sys
  2. sys.path.append( '..' )
  3. import os
  4. import report
  5. import merger
  6. import utils
  7. tag = "1_30_0"
  8. utils.makedirs( "results" )
  9. all_xml_file = "results/all.xml"
  10. all_xml_writer = open( all_xml_file, "w" )
  11. merger.merge_test_runs( ".", tag, all_xml_writer )
  12. all_xml_writer.close()
  13. report.make_result_pages(
  14. test_results_file = os.path.abspath( all_xml_file )
  15. , expected_results_file = ""
  16. , failures_markup_file = os.path.abspath( "explicit-failures-markup.xml" )
  17. , source = tag
  18. , run_date = "Today date"
  19. , comment_file = os.path.abspath( "comment.html" )
  20. , results_dir = os.path.abspath( "results" )
  21. , result_prefix = ""
  22. , reports = [ "l", "dd" ]
  23. , v2 = 0
  24. )
粤ICP备19079148号