This appended path was clearly wrong. Yet this test was running (and passing) in
CI. It seems somehow `./rtest` is already in the `$PYTHONPATH` in CI. A bit
mysterious, but this correction lets the test suite run locally correctly too.
import sys
import pytest
-sys.path.append(os.path.join(os.path.dirname(__file__), "../rtest"))
+sys.path.append(os.path.join(os.path.dirname(__file__), "../../../rtest"))
from gvtest import dot #pylint: disable=wrong-import-position
@pytest.mark.skipif(platform.system() == "Windows" and