File: test_skip.py

package info (click to toggle)
python-pytest-benchmark 5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,072 kB
  • sloc: python: 5,232; makefile: 12
file content (6 lines) | stat: -rw-r--r-- 93 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
import pytest


def test_skip(benchmark):
    pytest.skip('bla')
    benchmark(lambda: None)