Hello all,
i need some help or point me to the right documents which can help me to run some specflow tests on bamboo server.
Regards
Hello @shab2908 ,
I think that you might have found an answer to your problem, but just in case:
The dotnet compiler is smart enough to know that Specflow is a test framework and you can use it directly with this command:
dotnet test
If you have problems with it, there's the way Visual Studio offers you:
When you use Specflow with VisualStudio, you have a script file called "runtests.cmd" in your project. When you open it, you can see the commands used to compile and run your tests. If you're not sure of which command you want to use, you can directly execute this script.
In case you're lost in this script, those are the commands called in my case (I just removed the commands that check if there are errors due to a wrong configuration with the PATH):
#build the project
MSBuild.exe "yourProject.csproj"
#go in the packages to use Specflow
cd ..\packages\SpecRun.Runner.*\tools\net45
#execute the tests
SpecRun.exe run --baseFolder "%~dp0\bin\Debug" --log "specrun.log" %2 %3 %4 %5
And here's the Specflow doc to use the test in cmd line:
https://specflow.org/getting-started/#ExecuteAgain
Hope it helps,
Best Regards,
Marc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.