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
By default, integration tests run against the built-in time-skipping test server. Some tests require features that the built-in server doesn't support; those tests will be skipped. To run the skipped tests:
61
63
64
+
1. Install the [temporal CLI](https://docs.temporal.io/cli#installation), which comes with a built-in dev server.
65
+
2. Find the flags that the dev server will need to run the tests by grepping for `temporal server` in [./github/workflows/ci.yml](./github/workflows/ci.yml).
66
+
3. Start the server:
67
+
```bash
68
+
temporal server start-dev --YOUR-FLAGS-HERE
69
+
```
70
+
4. Set the `USE_EXTERNAL_SERVICE` environment variable and run the tests:
0 commit comments