Skip to content

Commit 0fed750

Browse files
committed
Fixed skip condition in ticker test
1 parent 4041ad5 commit 0fed750

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_Ticker.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@
55

66
from roboticstoolbox.tools.Ticker import Ticker
77
import unittest
8+
import platform
89

910

1011
class TestTicker(unittest.TestCase):
1112

1213
def test_ticker(self):
13-
self.skipTest('Not working on windows or mac')
14+
15+
if platform.system() in ['Windows', 'Darwin']:
16+
self.skipTest('Not working on windows or mac')
1417

1518
t = Ticker(0.1)
1619

0 commit comments

Comments
 (0)