Skip to content

run_test_suite --live-patch (and more!)

boyska requested to merge run-test-suite-improvements into stable

To ease the development, I added two options to ./run_test_suite:

  • --live-patch. It copies file just before running tests. This speeds up iterations when you're changing the code until the test passes. You can also manually invoke that function using $vm.live_patch or $vm.live_patch("my-sync-file.txt") from irb.

  • --view-interact make the viewer interactive. It can compromise test results (what if you click somewhere you shouldn't?) but if you are careful it can lead you to being able to perform actions manually, which sometimes is just what you need.

Edited by boyska

Merge request reports