removed pycache

This commit is contained in:
Erik Frojdh
2019-03-15 17:59:36 +01:00
parent 3356c2d3f6
commit c0d5303b70
38 changed files with 153 additions and 86 deletions

View File

@ -89,7 +89,8 @@ def test_zero_period_with_acq(eiger):
eiger.exposure_time = 0.001
eiger.period = t
eiger.file_write = False
eiger.acq()
eiger.start_detector()
eiger.stop_detector()
# Register 0x5 holds period
reg = eiger.register[0x5]

View File

@ -65,16 +65,16 @@ def test_rx_tcpport(eiger):
eiger.acq()
assert eiger.frames_caught == 1
@eigertest
@pytest.mark.new
def test_enable_disable_tengiga(eiger):
"""
This test does not check for dat on the 10Gbit link, only the set and get functions
"""
eiger.tengiga = True
assert eiger.tengiga == True
eiger.tengiga = False
assert eiger.tengiga == False
# @eigertest
# @pytest.mark.new
# def test_enable_disable_tengiga(eiger):
# """
# This test does not check for dat on the 10Gbit link, only the set and get functions
# """
# eiger.tengiga = True
# assert eiger.tengiga == True
# eiger.tengiga = False
# assert eiger.tengiga == False