run.py 310 B

1234567891011
  1. # Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
  2. # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
  3. copy("src", "out")
  4. run("""
  5. coverage run white.py
  6. coverage annotate white.py
  7. """, rundir="out")
  8. compare("out", "gold", "*,cover")
  9. clean("out")