Skip to content

Commit f4aa88c

Browse files
authored
Increased minimal version of pytest (#3066)
* upgrade pytest to ^7.2 * rename msg to reason in pytest.mark.skip
1 parent c081a57 commit f4aa88c

File tree

3 files changed

+40
-34
lines changed

3 files changed

+40
-34
lines changed

poetry.lock

Lines changed: 38 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ gui = ["dearpygui"]
6464

6565
[tool.poetry.dev-dependencies]
6666
pytest-cov = "^3.0.0"
67-
pytest = "^6.0"
67+
pytest = "^7.2"
6868
pylint = "^2.12.2"
6969
Sphinx = "^4"
7070
sphinx-copybutton = "^0.4.0"

tests/test_scene_rendering/opengl/test_opengl_renderer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_write_to_movie_disables_window(using_temp_opengl_config, disabling_cach
2020
assert_file_exists(config["output_file"])
2121

2222

23-
@pytest.mark.skip(msg="Temporarily skip due to failing in Windows CI") # type: ignore
23+
@pytest.mark.skip(reason="Temporarily skip due to failing in Windows CI") # type: ignore
2424
def test_force_window_opengl_render_with_movies(
2525
using_temp_opengl_config,
2626
force_window_config_write_to_movie,

0 commit comments

Comments
 (0)