1. 26 Apr, 2022 20 commits
  2. 23 Apr, 2022 9 commits
  3. 21 Apr, 2022 4 commits
  4. 18 Apr, 2022 1 commit
  5. 15 Apr, 2022 6 commits
    • Jérome Perrin's avatar
      ERP5Type/patches: simplify default_zpublisher_encoding patch · 6bcc62ff
      Jérome Perrin authored
      Instead of doing what loading zope.conf does (which is different
      across zope versions), use the ZConfig configuration callback.
      6bcc62ff
    • Jérome Perrin's avatar
      testInvalidationBug: skip for ZEO>=5 · f5e82460
      Jérome Perrin authored
      f5e82460
    • Jérome Perrin's avatar
    • Jérome Perrin's avatar
      ui_test_core: fix Zuite_viewRunZeleniumTestDialog dialog naming · 182f833d
      Jérome Perrin authored
      The old name was Zuite_viewZeleniumTestLauncher which is an violation
      to erp5-Guideline.Form.Report.Dialog.Is.Postfixed.With.Dialog
      182f833d
    • Jérome Perrin's avatar
      ui_test_core: remove unused ErrorLog_reportErrorList · d3d7b176
      Jérome Perrin authored
      ErrorLog is not allowed prefix, this was flagged by coding style test,
      since the script is not used it's better to remove it
      d3d7b176
    • Jérome Perrin's avatar
      CodingStyleTest: review business template installation · 1c57528b
      Jérome Perrin authored
      We were installing erp5_upgrader with its test dependencies, so it was
      installing erp5_full_text_mroonga_catalog. We were also installing
      erp5_full_text_myisam_catalog, so we ended up with two full text
      business template installed (and the order of this installation was not
      deterministic).
      This was problematic, because we were installing all the test dependencies
      of erp5_upgrader, but we don't really need them here and one goal of
      CodingStyleTest is to install only the dependencies of tested business
      templates, as a way to verify that dependencies are correctly specified.
      
      This new approach hooks at another level, to install a full text business
      template only if the tested business template has a dependency to the
      virutal "erp5_full_text_catalog" bt, but no dependency to a concrete bt
      (which happens for example in erp5_base) and to install erp5_upgrader
      without its test dependencies.
      
      As a result, we also run without erp5_base unless it's an explicit
      dependency.
      
      This also reverts commit ab44309f (
      full_text_myisam_catalog: skip coding style test) that is no longer
      needed with this new approach.
      1c57528b