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
Copy file name to clipboardExpand all lines: README.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ This requires that you've run `gcloud auth login` and `gcloud auth configure-doc
60
60
61
61
From the repository root:
62
62
63
-
```
63
+
```sh
64
64
# Build `umbrella` containers, pull other containers, start docker compose
65
65
$ make devenv
66
66
@@ -90,7 +90,7 @@ You can view logs with `docker compose logs api` / `docker compose logs worker`
90
90
91
91
## Running tests locally
92
92
93
-
```
93
+
```sh
94
94
# Runs worker tests and emits coverage and test result data in `apps/worker`
95
95
$ make devenv.test.worker
96
96
@@ -99,6 +99,9 @@ $ make devenv.test.api
99
99
100
100
# Runs shared tests and emits coverage and test result data in `libs/shared/tests`
101
101
$ make devenv.test.shared
102
+
103
+
# Runs all of the above tests
104
+
$ make devenv.test
102
105
```
103
106
104
107
Including the extra parameter "EXTRA_PYTEST_ARGS" allows you to add additional options to the pytest run. For example, if you wanted to run tests in the shared foo directory you could
0 commit comments