Hey, running `make test` is sorta slow. Is there a...
# daft-dev
r
Hey, running
make test
is sorta slow. Is there any way to speed it up (i.e., using multiple threads)? I saw this command:
DAFT_RUNNER=ray make test
. What's a
Ray runner
?
image.png
c
If you’re running Python tests, usually we just test the specific file:
pytest tests/<whatever> -k <testname>
👍 1
Ray runner is only for testing on a distributed cluster
❤️ 1