From: Richard Si <63936253+ichard26@users.noreply.github.com> Date: Fri, 7 May 2021 14:41:55 +0000 (-0400) Subject: Speed up test suite via distributed testing (#2196) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/4fc1354aeb6b217cd18dbdb2a0c41373fa9d8056?ds=inline;hp=4fc1354aeb6b217cd18dbdb2a0c41373fa9d8056 Speed up test suite via distributed testing (#2196) * Speed up test suite via distributed testing Since we now run the test suite twice, one with Python 2 and another without, full test runs are getting pretty slow. Let's try to fix that with parallization. Also use verbose mode on CI since more logs is usually better since getting more is quite literally impossible. The main issue we'll face with this is we'll hit https://github.com/pytest-dev/pytest-xdist/issues/620 sometimes (although pretty rarely). I suppose we can test this and see if how bad this bug is for us, and revert if necessary down the line. Also let's have some colours :tada: ---