python-pytest-html/drop-assertpy-dep.patch

552 lines
23 KiB
Diff
Raw Normal View History

- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
Index: pytest_html-4.0.0/testing/test_e2e.py
===================================================================
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
--- pytest_html-4.0.0.orig/testing/test_e2e.py
+++ pytest_html-4.0.0/testing/test_e2e.py
@@ -5,7 +5,6 @@ import urllib.parse
import pytest
import selenium.webdriver.support.expected_conditions as ec
-from assertpy import assert_that
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -84,7 +83,7 @@ def test_visible(pytester, path, driver)
ec.visibility_of_all_elements_located((By.CSS_SELECTOR, "#results-table"))
)
result = driver.find_elements(By.CSS_SELECTOR, "tr.collapsible")
- assert_that(result).is_length(2)
+ assert len(result) == 2
query_params = _encode_query_params({"visible": ""})
driver.get(f"file:///reports{path()}?{query_params}")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -92,7 +91,7 @@ def test_visible(pytester, path, driver)
ec.visibility_of_all_elements_located((By.CSS_SELECTOR, "#results-table"))
)
result = driver.find_elements(By.CSS_SELECTOR, "tr.collapsible")
- assert_that(result).is_length(0)
+ assert len(result) == 0
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
def test_custom_sorting(pytester, path, driver):
@@ -121,17 +120,17 @@ def test_custom_sorting(pytester, path,
)
rows = _parse_result_table(driver)
- assert_that(rows).is_length(2)
- assert_that(rows[0]["test"]).contains("AAA")
- assert_that(rows[0]["alpha"]).is_equal_to("AAA")
- assert_that(rows[1]["test"]).contains("BBB")
- assert_that(rows[1]["alpha"]).is_equal_to("BBB")
+ assert len(rows) == 2
+ assert "AAA" in rows[0]["test"]
+ assert "AAA" == rows[0]["alpha"]
+ assert "BBB" in rows[1]["test"]
+ assert "BBB" == rows[1]["alpha"]
driver.find_element(By.CSS_SELECTOR, "th[data-column-type='alpha']").click()
# we might need some wait here to ensure sorting happened
rows = _parse_result_table(driver)
- assert_that(rows).is_length(2)
- assert_that(rows[0]["test"]).contains("BBB")
- assert_that(rows[0]["alpha"]).is_equal_to("BBB")
- assert_that(rows[1]["test"]).contains("AAA")
- assert_that(rows[1]["alpha"]).is_equal_to("AAA")
+ assert len(rows) == 2
+ assert "BBB" in rows[0]["test"]
+ assert "BBB" == rows[0]["alpha"]
+ assert "AAA" in rows[1]["test"]
+ assert "AAA" == rows[1]["alpha"]
Index: pytest_html-4.0.0/testing/test_integration.py
===================================================================
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
--- pytest_html-4.0.0.orig/testing/test_integration.py
+++ pytest_html-4.0.0/testing/test_integration.py
@@ -9,7 +9,6 @@ from base64 import b64encode
from pathlib import Path
import pytest
-from assertpy import assert_that
from bs4 import BeautifulSoup
from selenium import webdriver
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -82,7 +81,7 @@ def assert_results(
if isinstance(number, int):
number_of_tests += number
result = get_text(page, f"span[class={outcome}]")
- assert_that(result).matches(rf"{number} {OUTCOMES[outcome]}")
+ assert re.match(rf"u{number} {OUTCOMES[outcome]}", result)
def get_element(page, selector):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -148,13 +147,11 @@ class TestHTML:
duration = get_text(page, "#results-table td[class='col-duration']")
total_duration = get_text(page, "p[class='run-count']")
if pause < 1:
- assert_that(int(duration.replace("ms", ""))).is_between(
- expectation, expectation * 2
- )
- assert_that(total_duration).matches(r"\d+\s+ms")
+ assert expectation < int(duration.replace("ms", "")) < expectation * 2
+ assert re.match(r"\d+\s+ms", total_duration)
else:
- assert_that(duration).matches(expectation)
- assert_that(total_duration).matches(r"\d{2}:\d{2}:\d{2}")
+ assert re.match(expectation, duration)
+ assert re.match(r"\d{2}:\d{2}:\d{2}", total_duration)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
def test_duration_format_hook(self, pytester):
pytester.makeconftest(
@@ -169,14 +166,14 @@ class TestHTML:
assert_results(page, passed=1)
duration = get_text(page, "#results-table td[class='col-duration']")
- assert_that(duration).contains("seconds")
+ assert "seconds" in duration
def test_total_number_of_tests_zero(self, pytester):
page = run(pytester)
assert_results(page)
total = get_text(page, "p[class='run-count']")
- assert_that(total).matches(r"0 test(?!s)")
+ assert re.match(r"0 test(?!s)", total)
def test_total_number_of_tests_singular(self, pytester):
pytester.makepyfile("def test_pass(): pass")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -184,7 +181,7 @@ class TestHTML:
assert_results(page, passed=1)
total = get_text(page, "p[class='run-count']")
- assert_that(total).matches(r"1 test(?!s)")
+ assert re.match(r"1 test(?!s)", total)
def test_total_number_of_tests_plural(self, pytester):
pytester.makepyfile(
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -197,7 +194,7 @@ class TestHTML:
assert_results(page, passed=2)
total = get_text(page, "p[class='run-count']")
- assert_that(total).matches(r"2 tests(?!\S)")
+ assert re.match(r"2 tests(?!\S)", total)
def test_pass(self, pytester):
pytester.makepyfile("def test_pass(): pass")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -217,7 +214,7 @@ class TestHTML:
assert_results(page, skipped=1, total_tests=0)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
log = get_text(page, "div[class='log']")
- assert_that(log).contains(reason)
+ assert reason in log
def test_skip_function_marker(self, pytester):
reason = str(random.random())
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -233,7 +230,7 @@ class TestHTML:
assert_results(page, skipped=1, total_tests=0)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
log = get_text(page, "div[class='log']")
- assert_that(log).contains(reason)
+ assert reason in log
def test_skip_class_marker(self, pytester):
reason = str(random.random())
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -250,16 +247,14 @@ class TestHTML:
assert_results(page, skipped=1, total_tests=0)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
log = get_text(page, "div[class='log']")
- assert_that(log).contains(reason)
+ assert reason in log
def test_fail(self, pytester):
pytester.makepyfile("def test_fail(): assert False")
page = run(pytester)
assert_results(page, failed=1)
- assert_that(get_log(page)).contains("AssertionError")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
- assert_that(get_text(page, "div[class='log'] span.error")).matches(
- r"^E\s+assert False$"
- )
+ assert "AssertionError" in get_log(page)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
+ assert re.match(r"^E\s+assert False$", get_text(page, "div[class='log'] span.error"))
def test_xfail(self, pytester):
reason = str(random.random())
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -272,7 +267,7 @@ class TestHTML:
)
page = run(pytester)
assert_results(page, xfailed=1)
- assert_that(get_log(page)).contains(reason)
+ assert reason in get_log(page)
def test_xfail_function_marker(self, pytester):
reason = str(random.random())
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -286,7 +281,7 @@ class TestHTML:
)
page = run(pytester)
assert_results(page, xfailed=1)
- assert_that(get_log(page)).contains(reason)
+ assert reason in get_log(page)
def test_xfail_class_marker(self, pytester):
pytester.makepyfile(
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -374,8 +369,8 @@ class TestHTML:
assert_results(page, error=1, total_tests=0)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
col_name = get_text(page, "td[class='col-testId']")
- assert_that(col_name).contains("::setup")
- assert_that(get_log(page)).contains("ValueError")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
+ asswert "::setup" in col_name
+ assert "ValueError" in get_log(page)
@pytest.mark.parametrize("title", ["", "Special Report"])
def test_report_title(self, pytester, title):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -392,8 +387,8 @@ class TestHTML:
expected_title = title if title else "report.html"
page = run(pytester)
- assert_that(get_text(page, "#head-title")).is_equal_to(expected_title)
- assert_that(get_text(page, "h1[id='title']")).is_equal_to(expected_title)
+ assert expected_title == get_text(page, "#head-title")
+ assert expected_title == get_text(page, "h1[id='title']")
def test_resources_inline_css(self, pytester):
pytester.makepyfile("def test_pass(): pass")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -401,15 +396,13 @@ class TestHTML:
content = file_content()
- assert_that(get_text(page, "head style").strip()).contains(content)
+ assert content in get_text(page, "head style").strip()
def test_resources_css(self, pytester):
pytester.makepyfile("def test_pass(): pass")
page = run(pytester)
- assert_that(page.select_one("head link")["href"]).is_equal_to(
- str(Path("assets", "style.css"))
- )
+ assert page.select_one("head link")["href"] == str(Path("assets", "style.css"))
def test_custom_content_in_summary(self, pytester):
content = {
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -435,11 +428,11 @@ class TestHTML:
elements = page.select(
".additional-summary p"
) # ".summary__data p:not(.run-count):not(.filter)")
- assert_that(elements).is_length(3)
+ assert len(elements) == 3
for element in elements:
key = re.search(r"(\w+).*", element.string).group(1)
value = content.pop(key)
- assert_that(element.string).contains(value)
+ assert value in element.string
def test_extra_html(self, pytester):
content = str(random.random())
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -460,7 +453,7 @@ class TestHTML:
pytester.makepyfile("def test_pass(): pass")
page = run(pytester)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
- assert_that(page.select_one(".extraHTML").string).is_equal_to(content)
+ assert content == page.select_one(".extraHTML").string
@pytest.mark.parametrize(
"content, encoded",
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -484,10 +477,8 @@ class TestHTML:
page = run(pytester, cmd_flags=["--self-contained-html"])
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
element = page.select_one("a[class='col-links__extra text']")
- assert_that(element.string).is_equal_to("Text")
- assert_that(element["href"]).is_equal_to(
- f"data:text/plain;charset=utf-8;base64,{encoded}"
- )
+ assert "Text" == element.string
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
+ assert f"data:text/plain;charset=utf-8;base64,{encoded}" == element["href"]
def test_extra_json(self, pytester):
content = {str(random.random()): str(random.random())}
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -512,10 +503,8 @@ class TestHTML:
data = b64encode(content_str.encode("utf-8")).decode("ascii")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
element = page.select_one("a[class='col-links__extra json']")
- assert_that(element.string).is_equal_to("JSON")
- assert_that(element["href"]).is_equal_to(
- f"data:application/json;charset=utf-8;base64,{data}"
- )
+ assert "JSON" == element.string
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
+ assert f"data:application/json;charset=utf-8;base64,{data}" == element["href"]
def test_extra_url(self, pytester):
content = str(random.random())
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -536,8 +525,8 @@ class TestHTML:
page = run(pytester)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
element = page.select_one("a[class='col-links__extra url']")
- assert_that(element.string).is_equal_to("URL")
- assert_that(element["href"]).is_equal_to(content)
+ assert "URL" == element.string
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
+ assert content == element["href"]
@pytest.mark.parametrize(
"mime_type, extension",
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -575,7 +564,7 @@ class TestHTML:
# assert_that(element["href"]).is_equal_to(src)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
element = page.select_one(".media img")
- assert_that(str(element)).is_equal_to(f'<img src="{src}"/>')
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
+ assert f'<img src="{src}"/>' == str(element)
@pytest.mark.parametrize("mime_type, extension", [("video/mp4", "mp4")])
def test_extra_video(self, pytester, mime_type, extension):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -603,9 +592,7 @@ class TestHTML:
# assert_that(element["href"]).is_equal_to(src)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
element = page.select_one(".media video")
- assert_that(str(element)).is_equal_to(
- f'<video controls="">\n<source src="{src}" type="{mime_type}"/>\n</video>'
- )
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
+ assert f'<video controls="">\n<source src="{src}" type="{mime_type}"/>\n</video>' == str(element)
def test_xdist(self, pytester):
pytester.makepyfile("def test_xdist(): pass")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -634,19 +621,10 @@ class TestHTML:
description_index = 5
time_index = 6
- assert_that(get_text(page, header_selector.format(time_index))).is_equal_to(
- "Time"
- )
- assert_that(
- get_text(page, header_selector.format(description_index))
- ).is_equal_to("Description")
-
- assert_that(get_text(page, row_selector.format(time_index))).is_equal_to(
- "A time"
- )
- assert_that(get_text(page, row_selector.format(description_index))).is_equal_to(
- "A description"
- )
+ assert "Time" == get_text(page, header_selector.format(time_index))
+ assert "Description" == get_text(page, header_selector.format(description_index))
+ assert "A time" == get_text(page, row_selector.format(time_index))
+ assert "A description" == get_text(page, row_selector.format(description_index))
def test_results_table_hook_insert(self, pytester):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
header_selector = "#results-table-head tr:nth-child(1) th:nth-child({})"
@@ -671,19 +649,10 @@ class TestHTML:
description_index = 4
time_index = 2
- assert_that(get_text(page, header_selector.format(time_index))).is_equal_to(
- "Time"
- )
- assert_that(
- get_text(page, header_selector.format(description_index))
- ).is_equal_to("Description")
-
- assert_that(get_text(page, row_selector.format(time_index))).is_equal_to(
- "A time"
- )
- assert_that(get_text(page, row_selector.format(description_index))).is_equal_to(
- "A description"
- )
+ assert "Time" == get_text(page, header_selector.format(time_index))
+ assert "Description" == get_text(page, header_selector.format(description_index))
+ assert "A time" == get_text(page, row_selector.format(time_index))
+ assert "A description" == get_text(page, row_selector.format(description_index))
def test_results_table_hook_delete(self, pytester):
pytester.makeconftest(
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -720,10 +689,10 @@ class TestHTML:
page = run(pytester)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
header_columns = page.select("#results-table-head th")
- assert_that(header_columns).is_length(3)
+ assert len(header_columns) == 3
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
row_columns = page.select_one(".results-table-row").select("td:not(.extra)")
- assert_that(row_columns).is_length(3)
+ assert len(row_columns) == 3
@pytest.mark.parametrize("no_capture", ["", "-s"])
def test_standard_streams(self, pytester, no_capture):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -752,11 +721,11 @@ class TestHTML:
for when in ["setup", "call", "teardown"]:
for stream in ["stdout", "stderr"]:
if no_capture:
- assert_that(log).does_not_match(f"- Captured {stream} {when} -")
- assert_that(log).does_not_match(f"this is {when} {stream}")
+ assert not re.match(f"- Captured {stream} {when} -", log)
+ assert not re.match(f"this is {when} {stream}", log)
else:
- assert_that(log).matches(f"- Captured {stream} {when} -")
- assert_that(log).matches(f"this is {when} {stream}")
+ assert re.match(f"- Captured {stream} {when} -", log)
+ assert re.match(f"this is {when} {stream}", log)
class TestLogCapturing:
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -804,7 +773,7 @@ class TestLogCapturing:
log = get_log(page)
for when in ["setup", "test", "teardown"]:
- assert_that(log).matches(self.LOG_LINE_REGEX.format(when))
+ assert re.match(self.LOG_LINE_REGEX.format(when), log)
@pytest.mark.usefixtures("log_cli")
def test_setup_error(self, test_file, pytester):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -813,9 +782,9 @@ class TestLogCapturing:
assert_results(page, error=1)
log = get_log(page)
- assert_that(log).matches(self.LOG_LINE_REGEX.format("setup"))
- assert_that(log).does_not_match(self.LOG_LINE_REGEX.format("test"))
- assert_that(log).does_not_match(self.LOG_LINE_REGEX.format("teardown"))
+ assert re.match(self.LOG_LINE_REGEX.format("setup"), log)
+ assert not re.match(self.LOG_LINE_REGEX.format("test"), log)
+ assert not re.match(self.LOG_LINE_REGEX.format("teardown"), log)
@pytest.mark.usefixtures("log_cli")
def test_test_fails(self, test_file, pytester):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -825,7 +794,7 @@ class TestLogCapturing:
log = get_log(page)
for when in ["setup", "test", "teardown"]:
- assert_that(log).matches(self.LOG_LINE_REGEX.format(when))
+ assert re.match(self.LOG_LINE_REGEX.format(when), log)
@pytest.mark.usefixtures("log_cli")
@pytest.mark.parametrize(
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -839,7 +808,7 @@ class TestLogCapturing:
for test_name in ["test_logging", "test_logging::teardown"]:
log = get_log(page, test_name)
for when in ["setup", "test", "teardown"]:
- assert_that(log).matches(self.LOG_LINE_REGEX.format(when))
+ assert re.match(self.LOG_LINE_REGEX.format(when), log)
def test_no_log(self, test_file, pytester):
pytester.makepyfile(test_file(assertion=True))
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -847,9 +816,9 @@ class TestLogCapturing:
assert_results(page, passed=1)
log = get_log(page, "test_logging")
- assert_that(log).contains("No log output captured.")
+ assert "No log output captured." in log
for when in ["setup", "test", "teardown"]:
- assert_that(log).does_not_match(self.LOG_LINE_REGEX.format(when))
+ assert not re.match(self.LOG_LINE_REGEX.format(when), log)
@pytest.mark.usefixtures("log_cli")
def test_rerun(self, test_file, pytester):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -860,8 +829,8 @@ class TestLogCapturing:
assert_results(page, failed=1, rerun=2)
log = get_log(page)
- assert_that(log.count("Captured log setup")).is_equal_to(3)
- assert_that(log.count("Captured log teardown")).is_equal_to(5)
+ assert log.count("Captured log setup") == 3
+ assert log.count("Captured log teardown") == 5
class TestCollapsedQueryParam:
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -888,9 +857,9 @@ class TestCollapsedQueryParam:
page = run(pytester)
assert_results(page, passed=1, failed=1, error=1)
- assert_that(is_collapsed(page, "test_pass")).is_true()
- assert_that(is_collapsed(page, "test_fail")).is_false()
- assert_that(is_collapsed(page, "test_error::setup")).is_false()
+ assert is_collapsed(page, "test_pass")
+ assert not is_collapsed(page, "test_fail")
+ assert not is_collapsed(page, "test_error::setup")
@pytest.mark.parametrize("param", ["failed,error", "FAILED,eRRoR"])
def test_specified(self, pytester, test_file, param):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -898,9 +867,9 @@ class TestCollapsedQueryParam:
page = run(pytester, query_params={"collapsed": param})
assert_results(page, passed=1, failed=1, error=1)
- assert_that(is_collapsed(page, "test_pass")).is_false()
- assert_that(is_collapsed(page, "test_fail")).is_true()
- assert_that(is_collapsed(page, "test_error::setup")).is_true()
+ assert not is_collapsed(page, "test_pass")
+ assert is_collapsed(page, "test_fail")
+ assert is_collapsed(page, "test_error::setup")
def test_all(self, pytester, test_file):
pytester.makepyfile(test_file)
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -908,7 +877,7 @@ class TestCollapsedQueryParam:
assert_results(page, passed=1, failed=1, error=1)
for test_name in ["test_pass", "test_fail", "test_error::setup"]:
- assert_that(is_collapsed(page, test_name)).is_true()
+ assert is_collapsed(page, test_name)
@pytest.mark.parametrize("param", ["", 'collapsed=""', "collapsed=''"])
def test_falsy(self, pytester, test_file, param):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -916,9 +885,9 @@ class TestCollapsedQueryParam:
page = run(pytester, query_params={"collapsed": param})
assert_results(page, passed=1, failed=1, error=1)
- assert_that(is_collapsed(page, "test_pass")).is_false()
- assert_that(is_collapsed(page, "test_fail")).is_false()
- assert_that(is_collapsed(page, "test_error::setup")).is_false()
+ assert not is_collapsed(page, "test_pass")
+ assert not is_collapsed(page, "test_fail")
+ assert not is_collapsed(page, "test_error::setup")
@pytest.mark.parametrize("param", ["failed,error", "FAILED,eRRoR"])
def test_render_collapsed(self, pytester, test_file, param):
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -932,9 +901,9 @@ class TestCollapsedQueryParam:
page = run(pytester)
assert_results(page, passed=1, failed=1, error=1)
- assert_that(is_collapsed(page, "test_pass")).is_false()
- assert_that(is_collapsed(page, "test_fail")).is_true()
- assert_that(is_collapsed(page, "test_error::setup")).is_true()
+ assert not is_collapsed(page, "test_pass")
+ assert is_collapsed(page, "test_fail")
+ assert is_collapsed(page, "test_error::setup")
def test_render_collapsed_precedence(self, pytester, test_file):
pytester.makeini(
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
@@ -951,7 +920,7 @@ class TestCollapsedQueryParam:
page = run(pytester, query_params={"collapsed": "skipped"})
assert_results(page, passed=1, failed=1, error=1, skipped=1)
- assert_that(is_collapsed(page, "test_pass")).is_false()
- assert_that(is_collapsed(page, "test_fail")).is_false()
- assert_that(is_collapsed(page, "test_error::setup")).is_false()
- assert_that(is_collapsed(page, "test_skip")).is_true()
+ assert not is_collapsed(page, "test_pass")
+ assert not is_collapsed(page, "test_fail")
+ assert not is_collapsed(page, "test_error::setup")
+ assert is_collapsed(page, "test_skip")
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
Index: pytest_html-4.0.0/testing/test_unit.py
===================================================================
- Refresh patches and node_modules.tar.gz - Update to 4.0.0: * Feat: Add duration format hook (#724) @BeyondEvil * Chore: Drop support for python 3.7 (#723) @BeyondEvil * Add expander to log output (#721) @drRedflint * Fix: Broken sorting for custom columns (#715) @BeyondEvil * Chore: Stop running scheduled tests on forks (#720) @BeyondEvil * Chore: Fix tox (#718) @BeyondEvil * use max height instead of fixed height (#706) @drRedflint * if only one item in gallery, remove navigation (#705) @drRedflint * Chore: Support legacy pytest-metadata (#714) @BeyondEvil * Feature: Untemplate table header (#713) @BeyondEvil * Fix: Borken HTML in jinja template (#712) @BeyondEvil * Feature: Update json-data-blob (#704) @BeyondEvil * Fix: Collapsed state between redraws (#703) @BeyondEvil * Feature: Only one collapsed state (#701) @BeyondEvil * Chore: General JS cleanup (#700) @BeyondEvil * Feature: Template test and duration summary (#698) @BeyondEvil * Feature: Template result filters (#697) @BeyondEvil * Feature: Template table header (#696) @BeyondEvil * Fix: visible query param (#695) @BeyondEvil * Fix: Handle legacy py html (#694) @BeyondEvil * Fix: Environment table toggle bug (#693) @BeyondEvil * Feature: Add initial sort column as ini (#692) @BeyondEvil * Fix: Duration sorting (#691) @BeyondEvil * Fix: Logging issues with teardown (#690) @BeyondEvil * Chore: Simplify results table hooks (#688) @BeyondEvil * Enable variable expansion for CSS addons. (#676) @BeyondEvil * Fix: results table html hook (#669) @BeyondEvil * fix for #671 - Sort icons inverted in next-gen branch (#672) @harmin-parra OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-html?expand=0&rev=36
2023-09-04 11:58:20 +02:00
--- pytest_html-4.0.0.orig/testing/test_unit.py
+++ pytest_html-4.0.0/testing/test_unit.py
@@ -4,7 +4,6 @@ import sys
import pkg_resources
import pytest
-from assertpy import assert_that
pytest_plugins = ("pytester",)
@@ -112,7 +111,8 @@ def test_custom_css(pytester, css_file_p
with open(str(path)) as f:
css = f.read()
- assert_that(css).contains("* " + str(css_file_path)).contains("* two.css")
+ assert "* " + str(css_file_path) in css
+ assert "* two.css" in css
def test_custom_css_selfcontained(pytester, css_file_path, expandvar):
@@ -131,4 +131,6 @@ def test_custom_css_selfcontained(pytest
with open(pytester.path / "report.html") as f:
html = f.read()
- assert_that(html).contains("* " + str(css_file_path)).contains("* two.css")
+
+ assert "* " + str(css_file_path) in html
+ assert "* two.css" in html