From 0403266bf0e7180d31a4c394a6f207ba4affe6b0 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Wed, 20 Jul 2016 17:23:07 +0200 Subject: [PATCH] record --exitfirst change in changelog --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f86cdce71..ec7ad5fea 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -51,6 +51,9 @@ time or change existing behaviors in order to make them less surprising/more use * ``_pytest.monkeypatch.monkeypatch`` class has been renamed to ``_pytest.monkeypatch.MonkeyPatch`` so it doesn't conflict with the ``monkeypatch`` fixture. +* ``--exitfirst / -x`` can now be overridden by a following ``--maxfail=N`` + and is just a synonym for ``--maxfail=1``. + * *