Skip to content

Commit

Permalink
This test fails intermittently on window due to time resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Aug 19, 2022
1 parent 2b96817 commit 2b28c0f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions qcodes/tests/drivers/test_tektronix_dpo7200xx.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import pytest
import sys
import timeit

import pytest

import qcodes.instrument.sims as sims
from qcodes.instrument_drivers.tektronix.DPO7200xx import TektronixDPO7000xx

Expand All @@ -18,7 +20,9 @@ def tektronix_dpo():
yield driver
driver.close()


@pytest.mark.xfail(
condition=sys.platform == "win32", reason="Time resolution is too low on windows"
)
def test_adjust_timer(tektronix_dpo):
"""
After adjusting the type of the measurement or the source of the
Expand Down

0 comments on commit 2b28c0f

Please sign in to comment.