mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-01 10:37:47 -05:00
6 lines
110 B
Python
6 lines
110 B
Python
import sys
|
|
|
|
import pytest
|
|
|
|
skip_py36 = pytest.mark.skipif(sys.version_info < (3, 7), reason="skip python3.6")
|