Verify test failes inside a docker container #539
-
Hello! Here is the error:
and Here is the Dockerfile part:
And here is the GHA workflow part:
Could you give any clues on possible reasons and how to fix that error? I use Verify.MSTest Version="17.0.0-beta.1" |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found the root cause - tests image is placed in different folder than build image in my Dockerfile. Therefore Verfiy was not able to locate verified.txt file. |
Beta Was this translation helpful? Give feedback.
Found the root cause - tests image is placed in different folder than build image in my Dockerfile. Therefore Verfiy was not able to locate verified.txt file.
I make workdir for tests the same as for build and the test passed.
Found alternative solution - with DerivedPathInfo but change Dockerfile is easier in my case.