diff --git a/pyproject.toml b/pyproject.toml index f6ad4e0c..40f3a1c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,20 +18,6 @@ dependencies = [ "magiccube==0.3.0", "pyfiglet==1.0.2" ] - -[project.optional-dependencies] -test = [ - "pytest>=7.0.0", - "pytest-cov>=4.0.0", -] - -[tool.pytest.ini_options] -addopts = "-ra -q --cov=reasoning_gym" -testpaths = [ - "tests", -] - -[project] classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License", @@ -40,6 +26,12 @@ classifiers = [ license = "Apache-2.0" license-files = ["LICENSE*"] +[project.optional-dependencies] +test = [ + "pytest>=7.0.0", + "pytest-cov>=4.0.0", +] + [project.urls] "Homepage" = "https://github.com/open-thought/reasoning-gym" "Bug Tracker" = "https://github.com/open-thought/reasoning-gym/issues" @@ -59,3 +51,9 @@ include = '\.pyi?$' profile = "black" multi_line_output = 3 line_length = 120 + +[tool.pytest.ini_options] +addopts = "-ra -q --cov=reasoning_gym" +testpaths = [ + "tests", +]