from ..jobspy import scrape_jobs import pandas as pd def test_all(): result = scrape_jobs( site_name=["linkedin", "indeed", "zip_recruiter", "glassdoor"], search_term="software engineer", results_wanted=5, ) assert ( isinstance(result, pd.DataFrame) and not result.empty ), "Result should be a non-empty DataFrame"