diff options
author | Brad King <brad.king@kitware.com> | 2013-10-08 13:53:25 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-10-08 13:53:25 (GMT) |
commit | 2ba45f52857dc0a98edb4e392b27276ea927e92c (patch) | |
tree | c9fd8c01cf93a3a72ea474429b601c630bb8f455 /Tests/PythonCoverage/coveragetest/foo.py | |
parent | 5bf71025056465ebacf49b9da6446b8ed7833a95 (diff) | |
parent | d0ec3a01a61f259768d31fc20791780807e1788e (diff) | |
download | CMake-2ba45f52857dc0a98edb4e392b27276ea927e92c.zip CMake-2ba45f52857dc0a98edb4e392b27276ea927e92c.tar.gz CMake-2ba45f52857dc0a98edb4e392b27276ea927e92c.tar.bz2 |
Merge topic 'Add-coverage.py-Coverage'
d0ec3a0 Adding support for the Python coverage.py tool.
Diffstat (limited to 'Tests/PythonCoverage/coveragetest/foo.py')
-rw-r--r-- | Tests/PythonCoverage/coveragetest/foo.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/PythonCoverage/coveragetest/foo.py b/Tests/PythonCoverage/coveragetest/foo.py new file mode 100644 index 0000000..97b5a41 --- /dev/null +++ b/Tests/PythonCoverage/coveragetest/foo.py @@ -0,0 +1,8 @@ + +def foo(): + x = 3 + 3 + return x + +def bar(): + y = 2 + 2 + return y |