Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions satellitevu/apis/base_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from allure import description, story, title
from allure import description, feature, title
from json import dumps
from typing import List
from urllib.parse import parse_qs
Expand All @@ -19,7 +19,7 @@ class TestApi(AbstractApi):
scopes = ["test"]


@story("Base")
@feature("Base")
@title("Scopes")
@description("Test that the correct scopes are sent in the request")
@mark.parametrize("kwargs", ({}, {"scopes": ["foo"]}))
Expand Down
4 changes: 2 additions & 2 deletions satellitevu/apis/catalog_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from allure import description, story, title
from allure import description, feature, title
from datetime import datetime, timezone
from json import dumps
from urllib.parse import urlparse
Expand All @@ -14,7 +14,7 @@
API_PATH = "catalog/v1/contract-id/"


@story("Catalog")
@feature("Catalog")
class TestCatalog:
@mocketize(strict_mode=True)
@mark.parametrize(
Expand Down
4 changes: 2 additions & 2 deletions satellitevu/apis/id_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from allure import description, story, title
from allure import description, feature, title
import json
import re
from urllib.parse import urlparse
Expand All @@ -13,7 +13,7 @@

@mark.parametrize("pact", ["id-service"], indirect=True)
@mark.usefixtures("mocketize_fixture")
@story("ID")
@feature("ID")
class TestID:
@title("Get user details")
@description("Retrieve the details of a user.")
Expand Down
4 changes: 2 additions & 2 deletions satellitevu/apis/orders_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from allure import description, story, title
from allure import description, feature, title
import tempfile
from io import BytesIO
from json import dumps
Expand All @@ -18,7 +18,7 @@


@mark.usefixtures("mocketize_fixture")
@story("Orders")
@feature("Orders")
class TestOrders:
@title("Submit order (single item)")
@description("Submit an order for a single item")
Expand Down
4 changes: 2 additions & 2 deletions satellitevu/apis/otm_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from allure import description, story, title
from allure import description, feature, title
from json import dumps, loads
from itertools import product
from secrets import token_urlsafe
Expand All @@ -16,7 +16,7 @@
API_PATH_ORDERS = "otm/v2/contract-id/tasking/orders/"


@story("Tasking")
@feature("Tasking")
@mark.usefixtures("mocketize_fixture")
class TestTasking:
@title("Cannot use OTM v2 without contract ID")
Expand Down
4 changes: 2 additions & 2 deletions satellitevu/auth/auth_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from allure import story, title
from allure import feature, title
from base64 import urlsafe_b64encode
from datetime import datetime
from json import dumps
Expand All @@ -14,7 +14,7 @@
from .exc import AuthError


@story("Auth")
@feature("Auth")
@mark.usefixtures("mocketize_fixture")
class TestAuth:
def _encode(self, claims: Dict[str, any]) -> str:
Expand Down
4 changes: 2 additions & 2 deletions satellitevu/auth/cache_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from allure import story, title
from allure import feature, title
from configparser import ConfigParser
from pathlib import Path

Expand All @@ -9,7 +9,7 @@
TEST_DIR = Path("/test")


@story("Cache")
@feature("Cache")
class TestCache:
@title("Empty cache save")
def test_empty_cache_save(self, fs: FakeFilesystem):
Expand Down
2 changes: 1 addition & 1 deletion satellitevu/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,4 +712,4 @@ def pact(request) -> Generator[Pact, None, None]:
def allure_metadata():
"""Allure labels to be added at runtime"""
allure.dynamic.label("layer", "unit")
allure.dynamic.feature("Python SDK")
allure.dynamic.epic("Python SDK")
4 changes: 2 additions & 2 deletions satellitevu/http/http_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from allure import story, title
from allure import feature, title
from importlib.metadata import version
from json import dumps
from unittest.mock import Mock
Expand All @@ -12,7 +12,7 @@
from . import ResponseWrapper, UrllibClient


@story("HTTP")
@feature("HTTP")
class TestHttp:
@title("HTTP client")
@mark.parametrize("method", ("GET", "POST"))
Expand Down
Loading