Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/e2e/project_template/test_static_crawlers_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ async def test_static_crawler_actor_at_apify(
capture_output=True,
check=True,
cwd=tmp_path / actor_name,
timeout=120,
timeout=600,
)
subprocess.run( # noqa: ASYNC221, S603
['apify', 'init', '-y', actor_name], # noqa: S607
capture_output=True,
check=True,
cwd=tmp_path / actor_name,
timeout=120,
timeout=600,
)

build_process = subprocess.run( # noqa: ASYNC221
Expand All @@ -108,7 +108,7 @@ async def test_static_crawler_actor_at_apify(
# Prevent git from walking up into the surrounding project's .git/ when running under
# a basetemp inside the repo (see --basetemp in the e2e-templates-tests poe task).
env={**os.environ, 'GIT_CEILING_DIRECTORIES': str(tmp_path)},
timeout=120,
timeout=600,
)
# Get actor ID from build log
actor_id_regexp = re.compile(r'https:\/\/console\.apify\.com\/actors\/(.*)#\/builds\/\d*\.\d*\.\d*')
Expand Down
Loading