You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As i am using shell script, which internally call python and shell script.
In the coverage report , we are not seeing the python scripts.
Below is the script used
Unfortuntately, kcov doesn't work across languages - a session is either bash or python, but not both. I'll keep the bug report open, but I think it might be non-trivial to implement.
Probably bash -> python is doable, but the other way around is likely to be much more difficult.,
Hi Simon,
As i am using shell script, which internally call python and shell script.
In the coverage report , we are not seeing the python scripts.
Below is the script used
cat test1.sh
#!/bin/bash
echo "first script"
python first.py
./test2.sh
cat test2.sh
#!/bin/bash
echo "second script"
cat first.py
print "hello world"
Running the script
kcov /tmp/abc/ test1.sh
first script
hello world
second script
It only show the two files test1,sh and test2.sh as 100% covered.
Kindly advice.
Regards
Bhaskar Rana
The text was updated successfully, but these errors were encountered: