Can I leverage the monitoring stage to use it while running tests on an image? #709
Replies: 1 comment
-
@bonymoloparambil yes, it's possible. The exact flag combination depends on what kind of tests you have and how you need/want to run them. First, you'll need to adjust how the tool knows that you are done running your tests and it can continue its data processing. For that you need to set the If you have a web app or a microservice and you want to run your network-based tests then you need to configure the network/http port used by the tool in your host environment. There are two flags for it. The If you have tests that need to run inside of your container then there are a couple of options. For very basic tests where you just have a simple shell script with a bunch of commands to execute then you can use the Another option is to mount your tests into the temporary container the tool creates and set the entrypoint for the container to the test execution script file name. For that you'd use the |
Beta Was this translation helpful? Give feedback.
-
Can I use the slim such a way that the monitoring stage can be performed while I run functional tests (With test tool) on an image so that it will cover all the aspects before deciding on what packages to be removed?
Beta Was this translation helpful? Give feedback.
All reactions