mirror of https://github.com/Bunsly/JobSpy
remove zip_recruiter from tests (github servers blocked)
parent
819c22eded
commit
1bd2dc1b80
|
@ -42,7 +42,7 @@ jobs:
|
|||
- name: Check HTTP status to POST /api/v1/jobs/
|
||||
run: |
|
||||
response=$(curl -L -s -X 'POST' -H 'Content-Type: application/json' -d '{
|
||||
"site_type": ["indeed", "linkedin", "zip_recruiter"],
|
||||
"site_type": ["indeed", "linkedin"],
|
||||
"search_term": "software engineer",
|
||||
"location": "austin, tx",
|
||||
"distance": 10,
|
||||
|
@ -65,13 +65,11 @@ jobs:
|
|||
run: |
|
||||
indeed_error=$(jq '.indeed.error' response.json)
|
||||
linkedin_error=$(jq '.linkedin.error' response.json)
|
||||
zip_recruiter_error=$(jq '.zip_recruiter.error' response.json)
|
||||
|
||||
if [[ "$indeed_error" != "null" || "$linkedin_error" != "null" || "$zip_recruiter_error" != "null" ]]; then
|
||||
# if [[ "$indeed_error" != "null" || "$linkedin_error" != "null" ]]; then
|
||||
echo "Error found in response:"
|
||||
echo "Indeed Error: $indeed_error"
|
||||
echo "LinkedIn Error: $linkedin_error"
|
||||
echo "ZipRecruiter Error: $zip_recruiter_error"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -79,12 +77,10 @@ jobs:
|
|||
run: |
|
||||
indeed_results=$(jq '.indeed.returned_results' response.json)
|
||||
linkedin_results=$(jq '.linkedin.returned_results' response.json)
|
||||
zip_recruiter_results=$(jq '.zip_recruiter.returned_results' response.json)
|
||||
|
||||
if [[ $indeed_results -ne 5 || $linkedin_results -ne 5 || $zip_recruiter_results -ne 5 ]]; then
|
||||
if [[ $indeed_results -ne 5 || $linkedin_results -ne 5 ]]; then
|
||||
echo "Mismatch in results_wanted and returned_results:"
|
||||
echo "Indeed: Expected 5, Got $indeed_results"
|
||||
echo "LinkedIn: Expected 5, Got $linkedin_results"
|
||||
echo "ZipRecruiter: Expected 5, Got $zip_recruiter_results"
|
||||
exit 1
|
||||
fi
|
Loading…
Reference in New Issue