https://github.com/raphaelvallat/yasa
Raw File
Tip revision: c7347534c479cc583ff98273e814505daa9d8e4f authored by remrama on 01 April 2024, 04:04:08 UTC
First draft of evaluation module (#130)
Tip revision: c734753
setup.cfg
[aliases]
test=pytest

[tool:pytest]
addopts = --showlocals --durations=10 --cov
markers =
    slow: mark a test as slow.
filterwarnings =
    ignore:the matrix subclass:PendingDeprecationWarning
testpaths =
    yasa/tests/

[flake8]
max-line-length = 100
ignore = N806, N803, D107, D200, D205, D400, D401, D412, W504, E203
exclude =
    .git,
    __pycache__,
    docs,
    tests,
    __init__.py,
    plotting.py,
    examples,
    notebooks,
    setup.py,
statistics=True
back to top