~mgedmin/imgdiff/master

« back to all changes in this revision

Viewing changes to tox.ini

  • Committer: Marius Gedminas
  • Date: 2019-11-12 18:22:22 UTC
  • Revision ID: git-v1:989e8f4310f872d17901619f0b84fb5859ef26a4
Require 100% coverage

Also move coverage configuration into .coveragerc instead of the command
line.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
    coverage
21
21
    {[testenv]deps}
22
22
commands =
23
 
    coverage run --source=imgdiff.py tests.py
24
 
    coverage report -m
 
23
    coverage run tests.py
 
24
    coverage report -m --fail-under=100