diff --git a/CHANGELOG.md b/CHANGELOG.md index fb5e2e5..6f27974 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ SPDX-License-Identifier: EUPL-1.2 - Parsing of multicomponent data for v1 and v2 machines, and partial analysis data for v1 machines. - Available data is shown in experiment information. - Change license to EUPL-1.2. +- Fixes for new matplotlib versions. # Version 0.10.1 diff --git a/tests/test_real.py b/tests/test_real.py index d39e5fd..1dd6461 100644 --- a/tests/test_real.py +++ b/tests/test_real.py @@ -3,13 +3,11 @@ import asyncio import uuid -from asyncio.futures import Future import pytest from qslib import AccessLevel, Experiment, Machine, PlateSetup, Protocol, Stage from qslib.experiment import MachineBusyError -from qslib.monitor import MachineConfig from qslib.qs_is_protocol import ( AccessLevelExceeded, AuthError, @@ -42,7 +40,6 @@ async def test_real_autherror(): m.run_command("HELP?") -@pytest.mark.asyncio def test_real_invocationerror(): m = Machine("localhost", password="correctpassword") with m: @@ -65,18 +62,13 @@ def test_real_invocationerror(): @pytest.mark.asyncio async def test_real_experiment(): - from qslib.monitor import Collector, Config - - mon = Collector( - Config(machine=MachineConfig(host="localhost", password="correctpassword")) - ) - - confut: Future[bool] = asyncio.Future() - task = mon.monitor(confut) - - asyncio.tasks.create_task(task) - - await confut + # mon = Collector( + # Config(machine=MachineConfig(host="localhost", password="correctpassword")) + # ) + # confut: Future[bool] = asyncio.Future() + # task = mon.monitor(confut) + # asyncio.tasks.create_task(task) + # await confut proto = Protocol( [