https://github.com/cortex-lab/phy
Raw File
Tip revision: 8166fbef6dc8e710912f2be4722621e13ae6d292 authored by Cyrille Rossant on 01 June 2022, 14:53:32 UTC
Fix qtbot test
Tip revision: 8166fbe
setup.cfg
[wheel]
universal = 1

[tool:pytest]
norecursedirs = experimental _*
filterwarnings =
    default
    ignore::DeprecationWarning:.*
    ignore:numpy.ufunc

[flake8]
ignore=E265,E731,E741,W504,W605
max-line-length=99

[coverage:run]
branch = False
source = phy
omit =
    */phy/ext/*
    */phy/utils/tempdir.py
    */default_settings.py

[coverage:report]
exclude_lines =
    pragma: no cover
    raise AssertionError
    raise NotImplementedError
    pass
    continue
    qtbot.stop()
    _in_travis():
    _is_high_dpi():
    return$
    ^"""
omit =
    */phy/plot/gloo/*
show_missing = True
back to top