Skip to content

Commit

Permalink
ci: disable unstable test (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje authored Oct 6, 2023
1 parent 3d178a0 commit b0fd679
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/network/convenience/test_various.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import platform
import unittest
from neo3.network.convenience import nodeweight, requestinfo, flightinfo

Expand All @@ -23,6 +24,7 @@ def test_mark_failed(self):


class NodeWeightTestCase(unittest.TestCase):
@unittest.skipIf(platform.system() == "Windows", "Unstable on CI for Windows")
def test_weight(self):
nw1 = nodeweight.NodeWeight(node_id=123)
self.assertEqual(nodeweight.NodeWeight.SPEED_RECORD_COUNT, len(nw1.speed))
Expand Down

0 comments on commit b0fd679

Please sign in to comment.