File: conftest.py

package info (click to toggle)
python-ecdsa 0.19.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,608 kB
  • sloc: python: 12,314; sh: 22; makefile: 14; sql: 12
file content (11 lines) | stat: -rw-r--r-- 296 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
def pytest_addoption(parser):
    parser.addoption(
        "--fast", action="store_true", default=False, help="run tests fast"
    )


def pytest_configure(config):
    config.addinivalue_line(
        "markers",
        "slow: mark test as slow to run (deselect with '-m \"not slow\"')",
    )