Skip to content

Commit

Permalink
Merge pull request #102 from zytedata/mark-job-postings-as-experimental
Browse files Browse the repository at this point in the history
Mark job posting template as experimental
  • Loading branch information
kmike authored Dec 16, 2024
2 parents 78c495c + 3367b0d commit d4c4855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_job_posting.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
{
Expand Down
2 changes: 1 addition & 1 deletion zyte_spider_templates/spiders/job_posting.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d4c4855

Please sign in to comment.