I am trying to configure TeamCity for a project. I want to run a scheduled build, which includes the stage where the NUnit tests are run.
My NUnit build step is as follows:
Runtime: NUnit-2.6.3 v4.0 MSIL Run tests on: **/Tests/*.dll Execute: If all previous steps finished successfully
But every time I run the assembly, I get an error message:
No assemblies were found.
Why is this happening and how can I fix it? In addition, conceptually, this assembly step will take place before the project is actually built. But how will there be any test DLLs (assemblies), unless the project is built in the first place?
source share