I am seeing three instances of this warning when MSTest is executed on our build server as part of our CI build and Test. This is causing all our unit tests to fail on the server.
Warning: Test Run deployment issue: The assembly or module 'MySql.Data' directly or indirectly referenced by the test container 'pathToOur.test.dll' was not found.
Warning: Test Run deployment issue: The assembly or module 'Npgsql' directly or indirectly referenced by the test container 'pathToOur.test.dll' was not found.
Warning: Test Run deployment issue: The assembly or module 'System.Data.SQLite' directly or indirectly referenced by the test container 'pathToOur.test.dll' was not found.
I cannot find anywhere in our solution that references either of these three components. They do not exist on the build server so I can't just add them to the GAC. Moreover, they are not present in my local machine, which builds the solution and runs all tests with no problems.
Any help or advice in tracking down these references and/or how to prevent them impacting on the CI Build and Test would be appreciated.