blob: c3fa200d38561464dc3338a7e1b91ac1adfeef0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Run from the root of the repo:
```shell
$ docker-compose -f tools/docker-compose/unit-tests/docker-compose.yml run unit-tests
```
This will start the container, install the dependencies, and run the unit tests.
If you just want to pop into a shell and poke around, run:
```shell
$ docker-compose -f tools/docker-compose/unit-tests/docker-compose.yml run unit-tests bash
```
If you run into any weirdness, it's probably a good idea to just give up and `make clean`.
|