Create a project with one group and two plotted datasets.
(api_client)
| 33 | |
| 34 | |
| 35 | def _make_project(api_client): |
| 36 | """Create a project with one group and two plotted datasets.""" |
| 37 | api_client.create_new_project() |
| 38 | time.sleep(0.2) |
| 39 | |
| 40 | api_client.command("project.group.add", {"title": "Probe", "widgetType": 0}) |
| 41 | time.sleep(0.1) |
| 42 | api_client.command("project.dataset.add", {"groupId": 0, "options": 1}) |
| 43 | time.sleep(0.1) |
| 44 | api_client.command("project.dataset.add", {"groupId": 0, "options": 1}) |
| 45 | time.sleep(0.1) |
| 46 | |
| 47 | |
| 48 | def _connect_device(api_client, device_simulator): |
no test coverage detected