Skip to content

Commit

Permalink
Skip windows tests due to platform specific time errors using pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
Smit-create committed Nov 2, 2022
1 parent 89a7012 commit 914508f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions quantecon/util/tests/test_timing.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def setup_method(self):
self.digits = 10

def test_timer(self):
if platform == 'darwin':
# skip for darwin
if platform == 'darwin' or platform == 'win32':
# skip for darwin and windows(#633)
return

tic()
Expand All @@ -36,8 +36,8 @@ def test_timer(self):
assert_allclose(actual, desired, rtol=rtol)

def test_loop(self):
if platform == 'darwin':
# skip for darwin
if platform == 'darwin' or platform == 'win32':
# skip for darwin and windows(#633)
return

def test_function_one_arg(n):
Expand Down

0 comments on commit 914508f

Please sign in to comment.