fix data/stripe_products.yml format #177
10 passed, 25 failed and 1 skipped
❌ ./test/report.xml
36 tests were completed in 104s with 10 passed, 25 failed and 1 skipped.
Test suite | Passed | Failed | Skipped | Time |
---|---|---|---|---|
pytest | 10✅ | 25❌ | 1⚪ | 104s |
❌ pytest
test.e2e.test_about
✅ test_about_screenshot[chromium]
❌ test_about_page_title[chromium]
page = <Page url='http://localhost:1313/about/'>
❌ test_about_banner_title[chromium]
page = <Page url='http://localhost:1313/about/'>
❌ test_about_banner_subtitle[chromium]
page = <Page url='http://localhost:1313/about/'>
test.e2e.test_community
✅ test_homepage_screenshot[chromium]
❌ test_community_page_title[chromium]
page = <Page url='http://localhost:1313/community/'>
❌ test_community_banner_title[chromium]
page = <Page url='http://localhost:1313/community/'>
❌ test_community_banner_subtitle[chromium]
page = <Page url='http://localhost:1313/community/'>
test.e2e.test_download-linux
✅ test_homepage_screenshot[chromium]
❌ test_download_linux_page_title[chromium]
page = <Page url='http://localhost:1313/download/linux/'>
❌ test_download_linux_banner_title[chromium]
page = <Page url='http://localhost:1313/download/linux/'>
❌ test_download_linux_banner_subtitle[chromium]
page = <Page url='http://localhost:1313/download/linux/'>
test.e2e.test_download-mac
✅ test_homepage_screenshot[chromium]
❌ test_download_mac_page_title[chromium]
page = <Page url='http://localhost:1313/download/macos/'>
❌ test_download_mac_banner_title[chromium]
page = <Page url='http://localhost:1313/download/macos/'>
❌ test_download_mac_banner_subtitle[chromium]
page = <Page url='http://localhost:1313/download/macos/'>
test.e2e.test_download-windows
✅ test_homepage_screenshot[chromium]
❌ test_download_windows_page_title[chromium]
page = <Page url='http://localhost:1313/download/windows/'>
❌ test_download_windows_banner_title[chromium]
page = <Page url='http://localhost:1313/download/windows/'>
❌ test_download_windows_banner_subtitle[chromium]
page = <Page url='http://localhost:1313/download/windows/'>
test.e2e.test_home1
✅ test_homepage_screenshot[chromium]
❌ test_homepage_has_logo[chromium]
page = <Page url='http://localhost:1313/'>
❌ test_title[chromium]
page = <Page url='http://localhost:1313/'>
❌ test_homepage_banner_title[chromium]
page = <Page url='http://localhost:1313/'>
❌ test_homepage_banner_subtitle[chromium]
page = <Page url='http://localhost:1313/'>
test.e2e.test_infra_configs
⚪ test_matrix_well_known[chromium]
test.e2e.test_navbar
❌ test_dropdowns[chromium]
page = <Page url='http://localhost:1313/'>
❌ test_nav[chromium]
page = <Page url='http://localhost:1313/'>
test.e2e.test_resources
✅ test_homepage_screenshot[chromium]
✅ test_resources_page_title[chromium]
❌ test_resources_banner_title[chromium]
page = <Page url='http://localhost:1313/hub/'>
❌ test_resources_banner_subtitle[chromium]
page = <Page url='http://localhost:1313/hub/'>
test.e2e.test_value
✅ test_homepage_screenshot[chromium]
✅ test_value_page_title[chromium]
❌ test_value_banner_title[chromium]
page = <Page url='http://localhost:1313/value-proposition/'>
❌ test_value_banner_subtitle[chromium]
page = <Page url='http://localhost:1313/value-proposition/'>
Annotations
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_about ► test_about_page_title[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/about/'>
Raw output
page = <Page url='http://localhost:1313/about/'>
def test_about_page_title(page: Page):
page.goto("/about/")
> assert page.title() == "About QGIS · QGIS Web Site"
E AssertionError: assert 'QGIS - The Leading Open Source Desktop GIS · QGIS Web Site' == 'About QGIS · QGIS Web Site'
E - About QGIS · QGIS Web Site
E + QGIS - The Leading Open Source Desktop GIS · QGIS Web Site
e2e/test_about.py:14: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_about ► test_about_banner_title[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/about/'>
Raw output
page = <Page url='http://localhost:1313/about/'>
def test_about_banner_title(page: Page):
page.goto("/about/")
hero_title = page.locator(".hero-title")
> expect(hero_title).to_contain_text("About")
E AssertionError: Locator expected to contain text 'About'
E Actual value: None
E Call log:
E LocatorAssertions.to_contain_text with timeout 5000ms
E waiting for selector ".hero-title"
e2e/test_about.py:19: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_about ► test_about_banner_subtitle[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/about/'>
Raw output
page = <Page url='http://localhost:1313/about/'>
def test_about_banner_subtitle(page: Page):
page.goto("/about/")
hero_subtitle = page.locator(".hero-subtitle")
> expect(hero_subtitle).to_contain_text("")
E AssertionError: Locator expected to contain text ''
E Actual value: None
E Call log:
E LocatorAssertions.to_contain_text with timeout 5000ms
E waiting for selector ".hero-subtitle"
e2e/test_about.py:24: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_community ► test_community_page_title[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/community/'>
Raw output
page = <Page url='http://localhost:1313/community/'>
def test_community_page_title(page: Page):
page.goto("/community/")
> assert page.title() == "Our Community · QGIS Web Site"
E AssertionError: assert 'Communities · QGIS Web Site' == 'Our Community · QGIS Web Site'
E - Our Community · QGIS Web Site
E ? ---- ^
E + Communities · QGIS Web Site
E ? ^^^
e2e/test_community.py:14: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_community ► test_community_banner_title[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/community/'>
Raw output
page = <Page url='http://localhost:1313/community/'>
def test_community_banner_title(page: Page):
page.goto("/community/")
hero_title = page.locator(".hero-title")
> expect(hero_title).to_contain_text("Our Community")
E AssertionError: Locator expected to contain text 'Our Community'
E Actual value: None
E Call log:
E LocatorAssertions.to_contain_text with timeout 5000ms
E waiting for selector ".hero-title"
e2e/test_community.py:19: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_community ► test_community_banner_subtitle[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/community/'>
Raw output
page = <Page url='http://localhost:1313/community/'>
def test_community_banner_subtitle(page: Page):
page.goto("/community/")
hero_subtitle = page.locator(".hero-subtitle")
> expect(hero_subtitle).to_contain_text("Experience the world’s most vibrant community of geospatial experts and enthusiasts")
E AssertionError: Locator expected to contain text 'Experience the world’s most vibrant community of geospatial experts and enthusiasts'
E Actual value: None
E Call log:
E LocatorAssertions.to_contain_text with timeout 5000ms
E waiting for selector ".hero-subtitle"
e2e/test_community.py:24: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_download-linux ► test_download_linux_page_title[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/download/linux/'>
Raw output
page = <Page url='http://localhost:1313/download/linux/'>
def test_download_linux_page_title(page: Page):
page.goto("/download/linux/")
> assert page.title() == "Download · QGIS Web Site"
E AssertionError: assert 'Error response' == 'Download · QGIS Web Site'
E - Download · QGIS Web Site
E + Error response
e2e/test_download-linux.py:15: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_download-linux ► test_download_linux_banner_title[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/download/linux/'>
Raw output
page = <Page url='http://localhost:1313/download/linux/'>
def test_download_linux_banner_title(page: Page):
page.goto("/download/linux/")
hero_title = page.locator(".hero-title")
> expect(hero_title).to_contain_text("Download")
E AssertionError: Locator expected to contain text 'Download'
E Actual value: None
E Call log:
E LocatorAssertions.to_contain_text with timeout 5000ms
E waiting for selector ".hero-title"
e2e/test_download-linux.py:20: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_download-linux ► test_download_linux_banner_subtitle[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/download/linux/'>
Raw output
page = <Page url='http://localhost:1313/download/linux/'>
def test_download_linux_banner_subtitle(page: Page):
page.goto("/download/linux/")
hero_subtitle = page.locator(".hero-subtitle")
> expect(hero_subtitle).to_contain_text("QGIS Desktop for Linux")
E AssertionError: Locator expected to contain text 'QGIS Desktop for Linux'
E Actual value: None
E Call log:
E LocatorAssertions.to_contain_text with timeout 5000ms
E waiting for selector ".hero-subtitle"
e2e/test_download-linux.py:25: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_download-mac ► test_download_mac_page_title[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/download/macos/'>
Raw output
page = <Page url='http://localhost:1313/download/macos/'>
def test_download_mac_page_title(page: Page):
page.goto("/download/macos/")
> assert page.title() == "Download · QGIS Web Site"
E AssertionError: assert 'Error response' == 'Download · QGIS Web Site'
E - Download · QGIS Web Site
E + Error response
e2e/test_download-mac.py:14: AssertionError
Check failure on line 0 in ./test/report.xml
github-actions / E2E Tests
pytest ► test.e2e.test_download-mac ► test_download_mac_banner_title[chromium]
Failed test found in:
./test/report.xml
Error:
page = <Page url='http://localhost:1313/download/macos/'>
Raw output
page = <Page url='http://localhost:1313/download/macos/'>
def test_download_mac_banner_title(page: Page):
page.goto("/download/macos/")
hero_title = page.locator(".hero-title")
> expect(hero_title).to_contain_text("Download")
E AssertionError: Locator expected to contain text 'Download'
E Actual value: None
E Call log:
E LocatorAssertions.to_contain_text with timeout 5000ms
E waiting for selector ".hero-title"
e2e/test_download-mac.py:19: AssertionError