glamorous-kangaroo-20427
10/22/2024, 7:04 PMmicroscopic-river-74022
10/22/2024, 7:04 PMmicroscopic-river-74022
10/22/2024, 7:05 PM-i
option when running a specific test. This option is useful for running a single test and streaming the log outputs. Here is how you can do it:
bash
garden test my-test -i
In this command, replace my-test
with the name of your test. This command will run the specified test and attach to it, streaming the log outputs.
If you want to retrieve the latest logs for all `Deploy`s or a single Deploy
, you can use the garden logs
command:
bash
garden logs # for all Deploys
garden logs my-deploy # for a single Deploy
Replace my-deploy
with the name of your Deploy.
If you want to stream logs for a Deploy
action, you can use the --follow
or -f
option:
bash
garden logs my-deploy --follow # or -f for short
Again, replace my-deploy
with the name of your Deploy.
You can also view your project graph, stream logs in real time, and run any Garden command from the command palette in the Live page of the Garden dashboard. To access the Live page, run garden dev
and follow the link to the Live page.
For more information, refer to the following documentation:
- Running a specific test and attaching ()
- Retrieving the latest logs for all `Deploy`s or a single Deploy
()
- Live Page ()
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------microscopic-river-74022
10/22/2024, 7:05 PM