mirror of https://github.com/celery/kombu.git
Added t/skip.py file
This commit is contained in:
parent
04cf759625
commit
35f5c6edf8
|
@ -0,0 +1,7 @@
|
|||
import sys
|
||||
import functools
|
||||
import importlib
|
||||
import pytest
|
||||
|
||||
if_pypy = pytest.mark.skipif(getattr(sys, 'pypy_version_info', None), reason='PyPy not supported.')
|
||||
if_win32 = pytest.mark.skipif(sys.platform.startswith('win32'), reason='Does not work on Windows')
|
Loading…
Reference in New Issue