diff --git a/packages/js-sdk/tests/template/backgroundBuild.test.ts b/packages/js-sdk/tests/template/backgroundBuild.test.ts index 0e798b47cd..b7c4cf2f7f 100644 --- a/packages/js-sdk/tests/template/backgroundBuild.test.ts +++ b/packages/js-sdk/tests/template/backgroundBuild.test.ts @@ -22,4 +22,4 @@ test('build template in background', async () => { // Verify the build is actually running const status = await Template.getBuildStatus(buildInfo) expect(status.status).toEqual('building') -}, 10_000) +}, 180_000) diff --git a/packages/python-sdk/tests/async/template_async/test_background_build.py b/packages/python-sdk/tests/async/template_async/test_background_build.py index 16690c7232..3743f85b9d 100644 --- a/packages/python-sdk/tests/async/template_async/test_background_build.py +++ b/packages/python-sdk/tests/async/template_async/test_background_build.py @@ -6,7 +6,6 @@ @pytest.mark.skip_debug() -@pytest.mark.timeout(10) async def test_build_in_background_should_start_build_and_return_info(): """Test that build_in_background returns immediately without waiting for build to complete.""" template = ( diff --git a/packages/python-sdk/tests/sync/template_sync/test_background_build.py b/packages/python-sdk/tests/sync/template_sync/test_background_build.py index f5d41db4e4..a991fe437d 100644 --- a/packages/python-sdk/tests/sync/template_sync/test_background_build.py +++ b/packages/python-sdk/tests/sync/template_sync/test_background_build.py @@ -6,7 +6,6 @@ @pytest.mark.skip_debug() -@pytest.mark.timeout(10) def test_build_in_background_should_start_build_and_return_info(): """Test that build_in_background returns immediately without waiting for build to complete.""" template = (