2024-08-12 11:21:40 -05:00
|
|
|
import logging
|
|
|
|
|
2024-12-14 06:49:02 -06:00
|
|
|
from tests.utilities.concurrent_openapi import run_tests
|
2024-08-12 11:21:40 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2024-09-27 11:31:25 -05:00
|
|
|
def test_openapi_all(auth_session):
|
|
|
|
run_tests(auth_session, fixture_globs=["tests/openapi/*/*.json"], num_workers=10)
|
2024-08-12 11:21:40 -05:00
|
|
|
|
|
|
|
|
2024-09-27 11:31:25 -05:00
|
|
|
# def test_openapi_v1(auth_session):
|
|
|
|
# run_tests(auth_session, fixture_globs=["tests/openapi/v1/*.json"], num_workers=4)
|
2024-08-12 11:21:40 -05:00
|
|
|
#
|
|
|
|
#
|
2024-09-27 11:31:25 -05:00
|
|
|
# def test_openapi_v2(auth_session):
|
|
|
|
# run_tests(auth_session, fixture_globs=["tests/openapi/v2/*.json"], num_workers=4)
|
2024-08-12 11:21:40 -05:00
|
|
|
#
|
|
|
|
#
|
2024-09-27 11:31:25 -05:00
|
|
|
# def test_openapi_v3(auth_session):
|
|
|
|
# run_tests(auth_session, fixture_globs=["tests/openapi/v3/*.json"], num_workers=4)
|