You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are running docker, you can run tests inside a docker-container by doing:
39
+
```
40
+
make docker.example // Expect example tests to succeed
41
+
make docker.01 // Expect fail because we don't have any day-01 tests
42
+
make docker.all // Expect some tests to succeed, some fail
43
+
```
44
+
45
+
## Getting started if you are not running Docker
46
+
If you are not running docker, you have to install languages we support on your host system. See the [Dockerfile](./Dockerfile) for how you can do this on debian-based systems. You can run the tests directly on your host system by doing:
47
+
```
48
+
make test.example // Expect example tests to succeed
49
+
make test.01 // Expect fail because we don't have any day-01 tests
50
+
make test.all // Expect some tests to succeed, some fail
0 commit comments