1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
Changelog
---------
1.0.0 - 2024-02-01
^^^^^^^^^^^^^^^^^^
* Add support for pytest 8.x
* Drop support for Python 3.7
Contributed by [Justin Mayer](https://github.com/justinmayer) via [PR #281](https://github.com/Teemu/pytest-sugar/pull/281/)
0.9.7 - 2023-04-10
^^^^^^^^^^^^^^^^^^
- For long-running tests, display minutes and not only seconds (thanks @last-partizan)
- Add support for Pytest’s ``--header`` option (thanks @wiresv)
0.9.6 (2022-11-5)
^^^^^^^^^^^^^^^^^^^
- Remove py.std calls (thanks @alexcjohnson)
0.9.5 (2022-07-10)
^^^^^^^^^^^^^^^^^^^
- Fix distutils deprecation warning (thanks @tgagor)
- Fix incompatibility with pytest-timeout (thanks @graingert)
- Update pytest naming convention in documentation (thanks @avallbona)
0.9.4 (2020-07-06)
^^^^^^^^^^^^^^^^^^^
- Fix pytest-sugar 0.9.3 incompatible with pytest 5.4 (thanks @nicoddemus)
- Fix Tests fail with pytest 3.5.0 DOCTESTS (^)
- Fix Tests fail with pytest 5.x (^)
0.9.3 (2020-04-26)
^^^^^^^^^^^^^^^^^^^
- Fix incompatibility with pytest 5.4.0 (thanks @GuillaumeFavelier)
0.9.2 (2018-11-8)
^^^^^^^^^^^^^^^^^^^
- Fix incompatibility with pytest 3.10 (thanks @Natim)
- Double colons for verbose output (thanks @albertodonato)
- Fix "Wrong count with items modified in pytest_collection_modifyitems" (thanks @blueyed)
- Defer registration of xdist hook (thanks @blueyed)
0.9.1 (2017-8-4)
^^^^^^^^^^^^^^^^^^^
- Fix incompatibility with pytest 3.4 (thanks @nicoddemus)
0.9.0 (2017-8-4)
^^^^^^^^^^^^^^^^^^^
- Print correct location for doctest failures
- Write xdist output on correct lines
0.8.0 (2016-12-28)
^^^^^^^^^^^^^^^^^^^
- Release as an universal wheel
- Pytest3 compatibility
- Treat setup/teardown failures as errors
- Fix path issue in --new-summary
- Disable sugar output when not in terminal, should help with testing other pytest plugins
- Add double colons when in verbose mode
- Make --new-summary default, replaced flag with --old-summary
0.7.1 (2016-4-1)
^^^^^^^^^^^^^^^^^^^
- Fix issue with deselected tests
0.7.0 (2016-3-29)
^^^^^^^^^^^^^^^^^^^
- Show skipped tests
- Changed failed test summary (try `--new-summary` option to test it out)
- Show teardown errors
- Add support for pytest-rerunfailedtests
- Make test symbols customizable
- Remove deprecated `--nosugar`.
0.6.0 (2016-3-18)
^^^^^^^^^^^^^^^^^^^
- pytest-xdist support
- Turn off progress meter when progressbar_length=0
0.5.1 (2015-10-12)
^^^^^^^^^^^^^^^^^^^
- Fix Python 3 support
0.5.0 (2015-10-12)
^^^^^^^^^^^^^^^^^^^
- Colour progressbar correctly for low number of tests
- Fix error case when deactivating pytest-sugar using --lf together with --nosugar
- --nosugar deprecated, use -p no:sugar
0.4.0 (2015-03-25)
^^^^^^^^^^^^^^^^^^^
Thanks to or:
- Configurable colors
- Handling of long file paths
- Red progressbar in case of failures
- Using termcolor for much easier coloration and configuration
- Simplify the progressbar maths code
- Change the 's' for skipped tests to a circle
- Simplify the space filling logic of full_line
- Reduce the right margin to 0, so the blinking cursor is hidden
0.3.6 (2014-12-12)
^^^^^^^^^^^^^^^^^^^
- Crashline with non-ASCII, #42
- Restore Python 2.6 / 3.3 support
- Fix unit tests
- Fix UnicodeDecodeError during install, #43
0.3.5 (2014-11-26)
^^^^^^^^^^^^^^^^^^^
- Fix codec error during pip install
0.3.4 (2014-04-02)
^^^^^^^^^^^^^^^^^^^
- Using pytest.mark.xfails throws an error #34
0.3.3 (2014-02-14)
^^^^^^^^^^^^^^^^^^^
- Fix problem with PyPi package.
0.3.2 (2014-02-06)
^^^^^^^^^^^^^^^^^^^
- Fix issue with PyPI package.
- Code refactoring
0.3.1 (2014-02-06)
^^^^^^^^^^^^^^^^^^^
- Fix incorrect wrapping that fine-grained progress introduced
0.3.0 (2014-6-05)
^^^^^^^^^^^^^^^^^^^
- Fine-grained progressbar using more Unicode block chars
- Display version of pytest and pytest-sugar
- Python 3 support
- Fix GH-3: Wrap tests when they extend past line
|