File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 33import json
44from http import HTTPMethod , HTTPStatus
55
6- import pytest
76import requests
87from 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 (
You can’t perform that action at this time.
0 commit comments