Skip to content

Commit

Permalink
Increased minimal version of pytest (#3066)
Browse files Browse the repository at this point in the history
* upgrade pytest to ^7.2

* rename msg to reason in pytest.mark.skip
  • Loading branch information
behackl authored Dec 8, 2022
1 parent c081a57 commit f4aa88c
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 34 deletions.
70 changes: 38 additions & 32 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ gui = ["dearpygui"]

[tool.poetry.dev-dependencies]
pytest-cov = "^3.0.0"
pytest = "^6.0"
pytest = "^7.2"
pylint = "^2.12.2"
Sphinx = "^4"
sphinx-copybutton = "^0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_scene_rendering/opengl/test_opengl_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_write_to_movie_disables_window(using_temp_opengl_config, disabling_cach
assert_file_exists(config["output_file"])


@pytest.mark.skip(msg="Temporarily skip due to failing in Windows CI") # type: ignore
@pytest.mark.skip(reason="Temporarily skip due to failing in Windows CI") # type: ignore
def test_force_window_opengl_render_with_movies(
using_temp_opengl_config,
force_window_config_write_to_movie,
Expand Down

0 comments on commit f4aa88c

Please sign in to comment.