Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 1016 Bytes

File metadata and controls

36 lines (25 loc) · 1016 Bytes

Local Mode

To run in local mode you first be sure that you have docker tools installed. On Debian systems:

apt install docker

To get started, run the setup command with the dataset split that you are interested in working with. We'll start with the lite split.

commit0 setup lite

This will install a clone the code for subset of libraries to your repos/ directory.

Next run the build command which will configure Docker containers for each of the libraries with isolated virtual environments. The command uses the uv library for efficient builds.

commit0 build

The main operation you can do with these enviroments is to run tests. Here we run a test in the simpy library.

commit0 test simpy tests/test_event.py::test_succeed

See distributed setup for more commands.