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
Currently, the value of skipDockerTests is true, which means, all docker related tests will not be ran by default if we execute gradle test, If we want to run a test that was marked the Tag annotation in IDE, then the following error will occur
and we need to modify the runtime configuration, such as adding -PskipDockerTest=false or change the value skipDockerTest to false in gradle.properties every time, it's rather tedious
I suggest we set the value by environment variant, so we can avoid changing skipDockerTest every time.
How should we improve?
No response
The text was updated successfully, but these errors were encountered:
As the discussion in slack, we keep both gradle.properties and enviroment variable to control the tests, and the priority of the former should be higher.
What would you like to be improved?
Currently, the value of
skipDockerTests
is true, which means, all docker related tests will not be ran by default if we executegradle test
, If we want to run a test that was marked theTag
annotation in IDE, then the following error will occurand we need to modify the runtime configuration, such as adding
-PskipDockerTest=false
or change the valueskipDockerTest
to false ingradle.properties
every time, it's rather tediousI suggest we set the value by environment variant, so we can avoid changing
skipDockerTest
every time.How should we improve?
No response
The text was updated successfully, but these errors were encountered: