When I run "go test", I want to use a different configuration file. How do I know within my code if I'm running within a test context or a normal context? Is there some sort of environment variable to check?
|
Code examples would help. But from your question it sounds like you've hardcoded a path to a config file somewhere when you probably wanted to pass it in instead. Change the function you are testing to take a parameter defining the config file and then in your test code pass a different path in than you use in the non test code. It's bad practice for your code to have a different path when testing vs production. |
|||||||
|
|
One possibility would be to use build constraints. If you run
Then you can use that tag to select which files will be included in a standard build of your package, and which will be used for testing. If you put your standard configuration in a file of its own, then adding a line to the top like the following will ensure that it is not used for testing:
You can then include the testing configuration in one of the |
|||||||
|