From d3729065d43fd9477a42deb96b88b8cf601e59bc Mon Sep 17 00:00:00 2001 From: Kieran Ryan Date: Sun, 28 Dec 2025 22:29:27 +0000 Subject: [PATCH] feat: Zip attachment type --- allure-python-commons/src/allure_commons/types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/allure-python-commons/src/allure_commons/types.py b/allure-python-commons/src/allure_commons/types.py index e631e427..1db7fd51 100644 --- a/allure-python-commons/src/allure_commons/types.py +++ b/allure-python-commons/src/allure_commons/types.py @@ -50,6 +50,7 @@ def __init__(self, mime_type, extension): JSON = ("application/json", "json") YAML = ("application/yaml", "yaml") PCAP = ("application/vnd.tcpdump.pcap", "pcap") + ZIP = ("application/zip", "zip") PNG = ("image/png", "png") JPG = ("image/jpg", "jpg")