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
Originally reported byschafer (Bitbucket: schafer, GitHub: schafer)
The following file contents will produce an empty coverage report (create directory "testsub" first):
import os
print "statement 1"
os.chdir("testsub")
print "statement 2"
Issue tested and exists in both 3.01 and 2.80-2 (current for Ubuntu 9.04 repository).
Workaround: specify an absolute file location via COVERAGE_FILE. This provides correct output in 3.01, but not in 2.80-2.
Adjusting the .coverage filename to include an absolute path via something like filename = os.path.join( os.path.abspath( os.path.split(filename)[0]), os.path.split(filename)[1]) would probably resolve.
Originally reported by schafer (Bitbucket: schafer, GitHub: schafer)
The following file contents will produce an empty coverage report (create directory "testsub" first):
Issue tested and exists in both 3.01 and 2.80-2 (current for Ubuntu 9.04 repository).
Workaround: specify an absolute file location via COVERAGE_FILE. This provides correct output in 3.01, but not in 2.80-2.
Adjusting the .coverage filename to include an absolute path via something like filename = os.path.join( os.path.abspath( os.path.split(filename)[0]), os.path.split(filename)[1]) would probably resolve.
The text was updated successfully, but these errors were encountered: