asp.net - Not able to exit the code after successfully run the test case -
i trying publish asp.net vnext project via travis ci yml file given below. solution build , after running test case waiting user input guess. kindly resolving same.
language: csharp mono: - latest install: - curl -ssl https://raw.githubusercontent.com/aspnet/home/dev/dnvminstall.sh | dnx_branch=dev sh && source ~/.dnx/dnvm/dnvm.sh - dnvm upgrade - dnu restore script: - cd src/webapisample/ && dnu build - cd - && cd src/sample.xunit/ && dnu restore - dnx test deploy: edge: true provider: cloudfoundry username: myemailid@yahoo.co.in password: ******* api: https://api.run.pivotal.io organization: mysampleorg space: development travis stuck @ line given below
=== test execution summary === myfirstdnxunittests total: 5, errors: 0, failed: 0, skipped: 0, time: 0.176s
according https://github.com/xunit/xunit/issues/604, that's known bug in dnx mono. should add -parallel none dnx test command , should work expected. note workaround
Comments
Post a Comment