mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
5 lines
110 B
Python
5 lines
110 B
Python
import sys
|
|
|
|
import pytest
|
|
|
|
skip_py36 = pytest.mark.skipif(sys.version_info < (3, 7), reason="skip python3.6")
|