Replies: 1 comment 1 reply
-
I decided to use solution based on environment variables. Couple of good links about the issue. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have few tests which need certain passwords in order to run. I do not want to store these passwords in any file or hard code them into code.
I ported these tests from .sbt -world and with sbt you can implement code that stops and reads from console. Password reading code is pretty much same as solution here.
Problem is that in mill this does not work but throws null pointer exception. It does not make any difference between Command, Task or Input, all throw null pointer exception.
How can I fix this or what is your preferred solution to pass credentials to test code?
Beta Was this translation helpful? Give feedback.
All reactions