()
| 30 | |
| 31 | @pytest.mark.skipif(API_KEY is None, reason="API_KEY is not set") |
| 32 | def test_create_task(): |
| 33 | client = CapmonsterClient(API_KEY, timeout=30.0) |
| 34 | task_id = client.create_task(task=DataDomeTask(websiteURL=WEBSITE_URL, metadata=METADATA)) |
| 35 | assert task_id != 0 |
| 36 | |
| 37 | |
| 38 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected