Skip to content

Commit

Permalink
fix windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoming0625 committed Mar 2, 2024
1 parent 6320d75 commit 61ae129
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion brainpy/_src/math/event/tests/test_event_csrmv.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import platform
force_test = False # turn on to force test on windows locally
if platform.platform() == 'Windows' and not force_test:
if platform.system() == 'Windows' and not force_test:
pytest.skip('skip windows', allow_module_level=True)


Expand Down
2 changes: 1 addition & 1 deletion brainpy/_src/math/jitconn/tests/test_event_matvec.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import platform
force_test = False # turn on to force test on windows locally
if platform.platform() == 'Windows' and not force_test:
if platform.system() == 'Windows' and not force_test:
pytest.skip('skip windows', allow_module_level=True)


Expand Down
2 changes: 1 addition & 1 deletion brainpy/_src/math/jitconn/tests/test_matvec.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import platform
force_test = False # turn on to force test on windows locally
if platform.platform() == 'Windows' and not force_test:
if platform.system() == 'Windows' and not force_test:
pytest.skip('skip windows', allow_module_level=True)


Expand Down
2 changes: 1 addition & 1 deletion brainpy/_src/math/sparse/tests/test_csrmv.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import platform
force_test = False # turn on to force test on windows locally
if platform.platform() == 'Windows' and not force_test:
if platform.system() == 'Windows' and not force_test:
pytest.skip('skip windows', allow_module_level=True)


Expand Down

0 comments on commit 61ae129

Please sign in to comment.