Skip to content

Commit

Permalink
Add CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus committed Jun 2, 2020
1 parent a746cc4 commit 9c8e884
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions changelog/1556.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
pytest now supports ``pyproject.toml`` files for configuration.

The configuration options is similar to the one available in other formats, but must be defined
in a ``[tool.pytest.ini_options]`` table to be picked up by pytest:

.. code-block:: toml
# pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
"integration",
]
More information can be found `in the docs <https://docs.pytest.org/en/stable/customize.html#configuration-file-formats>`__.

0 comments on commit 9c8e884

Please sign in to comment.