Right now, everything is tested against 6, even 4.7 and 5 patches. I'm setting simpletestauto.module on the server to filter out any non HEAD patches for now.

Robin

Comments

robin monks’s picture

Status: Active » Fixed

I added the following code to function simpletestauto_newPatch to fix this:

  if (substr($etc['version'], -3) != 'dev'){
    watchdog('simpletestauto', "Patch rejected, not HEAD branch.");
    return false;
  }

Robin

Anonymous’s picture

Status: Fixed » Closed (fixed)