@@ -337,12 +337,14 @@ def setUp(self):
337337 def tearDown (self ):
338338 """Clean up the test environment"""
339339
340+ @pytest .mark .skip
340341 @pytest .mark .xdist_group (name = "sql" )
341342 def test_str (self ):
342343 """Test string."""
343344 unit = self .SQLunit ()
344345 self .assertEqual (str (unit .slave ), "Modbus Slave Context" )
345346
347+ @pytest .mark .skip
346348 @pytest .mark .xdist_group (name = "sql" )
347349 def test_reset (self ):
348350 """Test reset."""
@@ -354,6 +356,7 @@ def test_reset(self):
354356 unit .slave .table , unit .slave .database
355357 )
356358
359+ @pytest .mark .skip
357360 @pytest .mark .xdist_group (name = "sql" )
358361 def test_validate_success (self ):
359362 """Test validate success."""
@@ -367,6 +370,7 @@ def test_validate_success(self):
367370 )
368371 )
369372
373+ @pytest .mark .skip
370374 @pytest .mark .xdist_group (name = "sql" )
371375 def test_validate_failure (self ):
372376 """Test validate failure."""
@@ -379,6 +383,7 @@ def test_validate_failure(self):
379383 unit .slave .validate (unit .mock_function , unit .mock_addr , wrong_count )
380384 )
381385
386+ @pytest .mark .skip
382387 @pytest .mark .xdist_group (name = "sql" )
383388 def test_build_set (self ):
384389 """Test build set."""
@@ -392,6 +397,7 @@ def test_build_set(self):
392397 mock_set ,
393398 )
394399
400+ @pytest .mark .skip
395401 @pytest .mark .xdist_group (name = "sql" )
396402 def test_check_success (self ):
397403 """Test check success."""
@@ -404,6 +410,7 @@ def test_check_success(self):
404410 unit .slave ._check ("h" , 0 , 1 ) # pylint: disable=protected-access
405411 )
406412
413+ @pytest .mark .skip
407414 @pytest .mark .xdist_group (name = "sql" )
408415 def test_check_failure (self ):
409416 """Test check failure."""
@@ -416,6 +423,7 @@ def test_check_failure(self):
416423 unit .slave ._check ("h" , 0 , 1 ) # pylint: disable=protected-access
417424 )
418425
426+ @pytest .mark .skip
419427 @pytest .mark .xdist_group (name = "sql" )
420428 def test_get_values (self ):
421429 """Test get values."""
@@ -428,6 +436,7 @@ def test_get_values(self):
428436 value , unit .mock_addr + 1 , unit .mock_count
429437 )
430438
439+ @pytest .mark .skip
431440 @pytest .mark .xdist_group (name = "sql" )
432441 def test_set_values (self ):
433442 """Test set values."""
@@ -440,6 +449,7 @@ def test_set_values(self):
440449 value , unit .mock_addr + 1 , unit .mock_values
441450 )
442451
452+ @pytest .mark .skip
443453 @pytest .mark .xdist_group (name = "sql" )
444454 def test_set (self ):
445455 """Test set."""
@@ -465,6 +475,7 @@ def test_set(self):
465475 )
466476 )
467477
478+ @pytest .mark .skip
468479 @pytest .mark .xdist_group (name = "sql" )
469480 def test_update_success (self ):
470481 """Test update success."""
@@ -478,6 +489,7 @@ def test_update_success(self):
478489 )
479490 )
480491
492+ @pytest .mark .skip
481493 @pytest .mark .xdist_group (name = "sql" )
482494 def test_update_failure (self ):
483495 """Test update failure."""
0 commit comments