Skip to content

Commit 18cedb6

Browse files
committed
Update CI workflow and remove VuMark test skip logic
1 parent 9efcf5e commit 18cedb6

2 files changed

Lines changed: 1 addition & 12 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ jobs:
113113
- tests/mock_vws/test_update_target.py::TestInactiveProject
114114
- tests/mock_vws/test_requests_mock_usage.py
115115
- tests/mock_vws/test_flask_app_usage.py
116+
- tests/mock_vws/test_vumark_generation_api.py
116117
- tests/mock_vws/test_docker.py
117118
- README.rst
118119
- docs/source/basic-example.rst

tests/mock_vws/test_vumark_generation_api.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import json
44
from http import HTTPMethod, HTTPStatus
55

6-
import pytest
76
import requests
87
from vws_auth_tools import authorization_header, rfc_1123_date
98

@@ -17,17 +16,6 @@ def test_generate_instance_success(
1716
vumark_vuforia_database: VuMarkVuforiaDatabase,
1817
) -> None:
1918
"""A VuMark instance can be generated with valid template settings."""
20-
if vumark_vuforia_database.target_id.startswith(
21-
"<"
22-
) or vumark_vuforia_database.instance_id.startswith("<"):
23-
pytest.skip(
24-
reason=(
25-
"VuMark generation settings are placeholders. "
26-
"Set VUMARK_VUFORIA_TARGET_ID and "
27-
"VUMARK_VUFORIA_INSTANCE_ID."
28-
),
29-
)
30-
3119
request_path = f"/targets/{vumark_vuforia_database.target_id}/instances"
3220
content_type = "application/json"
3321
content = json.dumps(

0 commit comments

Comments
 (0)