diff --git a/tests/test_job_posting.py b/tests/test_job_posting.py index eac5e73..90cadd1 100644 --- a/tests/test_job_posting.py +++ b/tests/test_job_posting.py @@ -265,7 +265,7 @@ def test_metadata(): expected_metadata = { "template": True, "title": "Job posting", - "description": "Template for spiders that extract job posting data from websites.", + "description": "[Experimental] Template for spiders that extract job posting data from websites.", "param_schema": { "groups": [ { diff --git a/zyte_spider_templates/spiders/job_posting.py b/zyte_spider_templates/spiders/job_posting.py index 2a9954f..c8e01f4 100644 --- a/zyte_spider_templates/spiders/job_posting.py +++ b/zyte_spider_templates/spiders/job_posting.py @@ -109,7 +109,7 @@ class JobPostingSpider(Args[JobPostingSpiderParams], BaseSpider): metadata: Dict[str, Any] = { **BaseSpider.metadata, "title": "Job posting", - "description": "Template for spiders that extract job posting data from websites.", + "description": "[Experimental] Template for spiders that extract job posting data from websites.", } @classmethod