I am unable to measure code coverage for my scala application using the tests written in Python. Steps followed to generate the report,
Compile the application activator -Dsbt.override.build.repos=true -Dsbt.repository.config=./repositories -Dsbt.log.noformat=true clean coverage dist
Run the application on port 9002 cd target/universal unzip sample-app-1.0.zip cd sample-app-1.0 bin/sample-app -Dhttp.port=9002
Run python tests against this application cd /home/python-tests python ./tests/sample_tests/pkg1/
lsof -t -i:9002 (Kill the application)
activator -Dsbt.override.build.repos=true - Dsbt.repository.config=./repositories -Dsbt.log.noformat=true coverageReport
Can someone please help me understand if the setup is correct?