File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 2828# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929
3030import logging
31+ import os
3132from datetime import datetime , timezone
3233
34+ import pytest
35+
36+ from powerapi .actor .message import StartMessage , ErrorMessage , OKMessage
3337from powerapi .database import ReadableDatabase
3438from powerapi .filter import Filter
35- from powerapi .actor .message import StartMessage , ErrorMessage , OKMessage
3639from powerapi .puller import PullerActor
3740from powerapi .report import Report
3841from tests .utils .db import SilentFakeDB
@@ -128,6 +131,7 @@ def test_puller_with_multiple_reports_filter():
128131 assert dispatcher_catch_all .get_num_received_data () == num_reports
129132
130133
134+ @pytest .mark .skipif (os .getenv ("CI" ) == "true" , reason = "This test is too flaky to be run in CI" )
131135def test_puller_with_stream_mode ():
132136 """
133137 Test that the puller send reports to the dispatcher and stay alive waiting for new reports.
You can’t perform that action at this time.
0 commit comments