File: .autotest

package info (click to toggle)
ruby-roadie 3.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 448 kB
  • ctags: 244
  • sloc: ruby: 2,758; makefile: 3
file content (10 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
# Override autotest default magic to rerun all tests every time a
# change is detected on the file system.
class Autotest
  def get_to_green
    begin
      rerun_all_tests
      wait_for_changes unless all_good
    end until all_good
  end
end