Skip to content

Commit 43bbdd0

Browse files
committed
Release pytest-sugar 1.1.0
1 parent 855d661 commit 43bbdd0

4 files changed

Lines changed: 15 additions & 10 deletions

File tree

CHANGES.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Changelog
22
---------
33

4+
1.1.0 - 2025-08-16
5+
^^^^^^^^^^^^^^^^^^
6+
7+
Add Playwright trace file detection and display support for failed tests. This enhancement automatically detects and displays Playwright trace.zip files with viewing commands when tests fail, making debugging easier for Playwright users.
8+
![Playwright trace.zip](docs/images/playwright-trace-example.png)
9+
10+
New command-line options:
11+
- `--sugar-trace-dir`: Configure the directory name for Playwright trace files (default: test-results)
12+
- `--sugar-no-trace`: Disable Playwright trace file detection and display
13+
14+
Contributed by [kie](https://github.com/kiebak3r) via [PR #296](https://github.com/Teemu/pytest-sugar/pull/296/)
15+
16+
417
1.0.0 - 2024-02-01
518
^^^^^^^^^^^^^^^^^^
619

RELEASE.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pytest-sugar"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "Pytest plugin that adds a progress bar and other visual enhancements"
55
authors = ["Teemu <orkkiolento@gmail.com>", "Janne Vanhala <janne.vanhala@gmail.com>"]
66
license = "BSD-3-Clause"

pytest_sugar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from _pytest.terminal import TerminalReporter, format_session_duration
2727
from termcolor import colored
2828

29-
__version__ = "1.0.0"
29+
__version__ = "1.1.0"
3030

3131
LEN_RIGHT_MARGIN = 0
3232
LEN_PROGRESS_PERCENTAGE = 5

0 commit comments

Comments
 (0)