File: util.py

package info (click to toggle)
pytest-xdist 3.8.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 684 kB
  • sloc: python: 5,497; makefile: 7; sh: 5
file content (9 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
import warnings


class MyWarning2(UserWarning):
    pass


def generate_warning() -> None:
    warnings.warn(MyWarning2("hello"))