Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement pagination feature #621

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,7 @@ def test_mailto_bpdevs(page_url: tuple[Page, str]) -> None:

@pytest.mark.parametrize(
"url",
(
"/",
"/blog",
),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed this from our test case as it was causing the test to fail. The homepage no longer includes posts/blogs according to the latest changes and updates.

("/blog",),
)
def test_page_description_in_index_and_blog(page_url: tuple[Page, str], url: str):
"""Checks for the descriptions data in the blog posts. There should be some objects with the class `post-description`"""
Expand Down
Loading