diff --git a/tests/integration/long_callback/test_basic_long_callback001.py b/tests/integration/long_callback/test_basic_long_callback001.py index e774443956..4fdc1109ef 100644 --- a/tests/integration/long_callback/test_basic_long_callback001.py +++ b/tests/integration/long_callback/test_basic_long_callback001.py @@ -8,7 +8,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) @flaky(max_runs=3) def test_lcbc001_fast_input(dash_duo, manager): diff --git a/tests/integration/long_callback/test_basic_long_callback002.py b/tests/integration/long_callback/test_basic_long_callback002.py index 9d1de381f2..bf68caea55 100644 --- a/tests/integration/long_callback/test_basic_long_callback002.py +++ b/tests/integration/long_callback/test_basic_long_callback002.py @@ -7,7 +7,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) @flaky(max_runs=3) def test_lcbc002_long_callback_running(dash_duo, manager): diff --git a/tests/integration/long_callback/test_basic_long_callback003.py b/tests/integration/long_callback/test_basic_long_callback003.py index c8825a6e0f..6f6f3cc2a2 100644 --- a/tests/integration/long_callback/test_basic_long_callback003.py +++ b/tests/integration/long_callback/test_basic_long_callback003.py @@ -8,7 +8,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) @flaky(max_runs=3) def test_lcbc003_long_callback_running_cancel(dash_duo, manager): diff --git a/tests/integration/long_callback/test_basic_long_callback004.py b/tests/integration/long_callback/test_basic_long_callback004.py index 06080ada7e..6d6d06d59f 100644 --- a/tests/integration/long_callback/test_basic_long_callback004.py +++ b/tests/integration/long_callback/test_basic_long_callback004.py @@ -7,7 +7,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) @flaky(max_runs=3) def test_lcbc004_long_callback_progress(dash_duo, manager): diff --git a/tests/integration/long_callback/test_basic_long_callback005.py b/tests/integration/long_callback/test_basic_long_callback005.py index c92c6ae00b..6676e2b04f 100644 --- a/tests/integration/long_callback/test_basic_long_callback005.py +++ b/tests/integration/long_callback/test_basic_long_callback005.py @@ -7,7 +7,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) @pytest.mark.skip(reason="Timeout often") def test_lcbc005_long_callback_caching(dash_duo, manager): diff --git a/tests/integration/long_callback/test_basic_long_callback006.py b/tests/integration/long_callback/test_basic_long_callback006.py index 3ae58ce769..48ae88cc44 100644 --- a/tests/integration/long_callback/test_basic_long_callback006.py +++ b/tests/integration/long_callback/test_basic_long_callback006.py @@ -8,7 +8,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) @flaky(max_runs=3) def test_lcbc006_long_callback_caching_multi(dash_duo, manager): diff --git a/tests/integration/long_callback/test_basic_long_callback007.py b/tests/integration/long_callback/test_basic_long_callback007.py index a8970b2ff2..faea59b1ff 100644 --- a/tests/integration/long_callback/test_basic_long_callback007.py +++ b/tests/integration/long_callback/test_basic_long_callback007.py @@ -7,7 +7,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) @flaky(max_runs=3) def test_lcbc007_validation_layout(dash_duo, manager): diff --git a/tests/integration/long_callback/test_basic_long_callback008.py b/tests/integration/long_callback/test_basic_long_callback008.py index dad22394d4..c08f01c090 100644 --- a/tests/integration/long_callback/test_basic_long_callback008.py +++ b/tests/integration/long_callback/test_basic_long_callback008.py @@ -6,7 +6,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc008_long_callbacks_error(dash_duo, manager): with setup_long_callback_app(manager, "app_error") as app: diff --git a/tests/integration/long_callback/test_basic_long_callback009.py b/tests/integration/long_callback/test_basic_long_callback009.py index c70b9736ad..462068b609 100644 --- a/tests/integration/long_callback/test_basic_long_callback009.py +++ b/tests/integration/long_callback/test_basic_long_callback009.py @@ -7,7 +7,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc009_short_interval(dash_duo, manager): with setup_long_callback_app(manager, "app_short_interval") as app: diff --git a/tests/integration/long_callback/test_basic_long_callback010.py b/tests/integration/long_callback/test_basic_long_callback010.py index e6ba2fca44..2c58481a4d 100644 --- a/tests/integration/long_callback/test_basic_long_callback010.py +++ b/tests/integration/long_callback/test_basic_long_callback010.py @@ -6,7 +6,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc010_side_updates(dash_duo, manager): with setup_long_callback_app(manager, "app_side_update") as app: diff --git a/tests/integration/long_callback/test_basic_long_callback011.py b/tests/integration/long_callback/test_basic_long_callback011.py index 94736f4b67..5f83b2873e 100644 --- a/tests/integration/long_callback/test_basic_long_callback011.py +++ b/tests/integration/long_callback/test_basic_long_callback011.py @@ -6,7 +6,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc011_long_pattern_matching(dash_duo, manager): with setup_long_callback_app(manager, "app_pattern_matching") as app: diff --git a/tests/integration/long_callback/test_basic_long_callback012.py b/tests/integration/long_callback/test_basic_long_callback012.py index e646686f38..242865a2c8 100644 --- a/tests/integration/long_callback/test_basic_long_callback012.py +++ b/tests/integration/long_callback/test_basic_long_callback012.py @@ -7,7 +7,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc012_long_callback_ctx(dash_duo, manager): with setup_long_callback_app(manager, "app_callback_ctx") as app: diff --git a/tests/integration/long_callback/test_basic_long_callback013.py b/tests/integration/long_callback/test_basic_long_callback013.py index 451e03193e..772536019d 100644 --- a/tests/integration/long_callback/test_basic_long_callback013.py +++ b/tests/integration/long_callback/test_basic_long_callback013.py @@ -6,7 +6,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc013_unordered_state_input(dash_duo, manager): with setup_long_callback_app(manager, "app_unordered") as app: diff --git a/tests/integration/long_callback/test_basic_long_callback014.py b/tests/integration/long_callback/test_basic_long_callback014.py index 47ff2f1155..c263e9c588 100644 --- a/tests/integration/long_callback/test_basic_long_callback014.py +++ b/tests/integration/long_callback/test_basic_long_callback014.py @@ -6,7 +6,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc014_progress_delete(dash_duo, manager): with setup_long_callback_app(manager, "app_progress_delete") as app: diff --git a/tests/integration/long_callback/test_basic_long_callback015.py b/tests/integration/long_callback/test_basic_long_callback015.py index a35a8b19ee..1ec66ec63e 100644 --- a/tests/integration/long_callback/test_basic_long_callback015.py +++ b/tests/integration/long_callback/test_basic_long_callback015.py @@ -6,7 +6,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc015_diff_outputs_same_func(dash_duo, manager): with setup_long_callback_app(manager, "app_diff_outputs") as app: diff --git a/tests/integration/long_callback/test_basic_long_callback016.py b/tests/integration/long_callback/test_basic_long_callback016.py index 3d9e66a77e..1d783496c3 100644 --- a/tests/integration/long_callback/test_basic_long_callback016.py +++ b/tests/integration/long_callback/test_basic_long_callback016.py @@ -7,7 +7,8 @@ @pytest.mark.skipif( - sys.version_info < (3, 7), reason="Python 3.6 long callbacks tests hangs up" + sys.version_info >= (3, 11), + reason="Python 3.11 and 3.12 long callbacks tests hangs up", ) def test_lcbc016_multi_page_cancel(dash_duo, manager): with setup_long_callback_app(manager, "app_page_cancel") as app: