https://github.com/raphaelvallat/yasa
Raw File
Tip revision: ac57657b976e3f544ddaccc43e56f38164bb3e09 authored by Raphael Vallat on 30 August 2019, 19:02:49 UTC
Switch to 0.1.7
Tip revision: ac57657
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

[flake8]
ignore = N806, N803
exclude =
    .git,
    __pycache__,
    docs,
    __init__.py,
    examples,
    notebooks,
    setup.py,
statistics=True
back to top