Skip to content

Commit

Permalink
run all
Browse files Browse the repository at this point in the history
  • Loading branch information
cullenwatson committed Jul 19, 2024
1 parent 9dd9354 commit 4826e8b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/tests/test_glassdoor.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ def test_glasdoor():
results_wanted=5,
)
assert (
isinstance(result, pd.DataFrame) and len(result) == 20
isinstance(result, pd.DataFrame) and len(result) == 5
), "Result should be a non-empty DataFrame"
2 changes: 1 addition & 1 deletion src/tests/test_indeed.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ def test_indeed():
results_wanted=5,
)
assert (
isinstance(result, pd.DataFrame) and len(result) == 20
isinstance(result, pd.DataFrame) and len(result) == 5
), "Result should be a non-empty DataFrame"
2 changes: 1 addition & 1 deletion src/tests/test_linkedin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
def test_linkedin():
result = scrape_jobs(site_name="linkedin", search_term="engineer", results_wanted=5)
assert (
isinstance(result, pd.DataFrame) and len(result) == 20
isinstance(result, pd.DataFrame) and len(result) == 5
), "Result should be a non-empty DataFrame"
2 changes: 1 addition & 1 deletion src/tests/test_ziprecruiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ def test_ziprecruiter():
)

assert (
isinstance(result, pd.DataFrame) and len(result) == 20
isinstance(result, pd.DataFrame) and len(result) == 5
), "Result should be a non-empty DataFrame"

0 comments on commit 4826e8b

Please sign in to comment.