File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ dependencies = [
1818 " distrax>=0.1.5" ,
1919 " flax>=0.8.2" ,
2020 " brax>=0.10.3" ,
21- " pytest>=7.4.4 " ,
21+ " pytest>=8.0.0 " ,
2222 " coverage>=7.4.4" ,
2323 " xminigrid>=0.8.0" ,
2424 " gymnasium>=1.2.0" ,
@@ -54,8 +54,8 @@ dev = [
5454 " mypy>=1.9.0"
5555]
5656test = [
57- " pytest>=7.4.4 " ,
58- " pytest-coverage " ,
57+ " pytest>=8.0.0 " ,
58+ " pytest-cov>=4.1.0 " ,
5959 " pytest-cases>=3.8.5" ,
6060 " ARLBench[examples]"
6161]
@@ -70,19 +70,17 @@ doc = [
7070]
7171envpool = [" envpool>=0.8.4" ]
7272
73-
74- # https://docs.pytest.org/en/7.2.x/reference/reference.html#ini-options-ref
7573[tool .pytest .ini_options ]
7674testpaths = [" tests" ]
77- minversion = " 7 .0"
75+ minversion = " 8 .0"
7876empty_parameter_set_mark = " xfail"
7977log_cli = false
8078log_level = " DEBUG"
8179xfail_strict = true
80+ # Note: Ensure you actually want to call --cov here if you use it in CI
8281addopts = " --durations=10 -vv"
8382markers = [" example: An example" ]
8483
85-
8684[tool .coverage .run ]
8785branch = true
8886include = [" arlbench" ]
@@ -97,15 +95,12 @@ exclude_lines = [
9795 " if TYPE_CHECKING" ,
9896]
9997
100- # https://github.com/charliermarsh/ruff
10198[tool .ruff ]
10299target-version = " py310"
103100line-length = 88
104101show-source = true
105102src = [" src" , " tests" , " examples" ]
106103lint.extend-safe-fixes = [" ALL" ]
107-
108- # Allow unused variables when underscore-prefixed.
109104lint.dummy-variable-rgx = " ^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
110105
111106lint.select = [
You can’t perform that action at this time.
0 commit comments