xonsh/.coveragerc
Noorhteen Raja NJ e25ab34e32
Add test for readline shell (#4447)
* fix: ReadlineShell pass stdin/out to Cmd's constructor

* test: add test for readline shell

* chore: increase required coverage

* test:

* fix: failing ci pipeline

* fix: failing ci test
2021-09-02 22:15:20 +03:00

33 lines
628 B
INI

[run]
branch = true
source =
xonsh/
xontrib/
omit =
.venv/*
*/__amalgam__.py
xonsh/lazyasd.py
xonsh/parser_table.py
xonsh/completion_parser_table.py
xonsh/ply/*
# keep all cache files in one place
data_file = .cache/coverage
# https://stackoverflow.com/questions/42721896/coverage-in-parallel-for-django-tests
# when run with xdist - but append mode will not work
#concurrency = multiprocessing
#parallel = true
[report]
precision = 2
exclude_lines =
pragma: no cover
raise NotImplementedError
skip_covered = true
skip_empty = true
show_missing = true
sort = Miss
# keep improving ;)
fail_under = 60