REPO_ROOT/toybox) and a test directory (REPO_ROOT/test). When running the tests, I use mojo test -I .; the -I . tells the test runner to add the current dir (.) to Mojo's import path while running the tests.from toybox import BlahBlah, so I temporarily add a test/__init__.mojo file while building the tests. That appeases the LSP. Then I delete that file when running the tests. Add it back and edit. Delete it and run tests. Rinse, repeat. Bleh.__init__.mojo file exists; it fails on the import line, then starts throwing other "errors" at other points in the code. 

