We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d0d136 commit 1828bafCopy full SHA for 1828baf
brainpy/_src/dnn/tests/test_activation.py
@@ -1,7 +1,13 @@
1
+import platform
2
+
3
from absl.testing import absltest
4
from absl.testing import parameterized
5
import brainpy as bp
6
import brainpy.math as bm
7
+import pytest
8
9
+if platform.system() == 'Darwin':
10
+ pytest.skip('skip Mac OS', allow_module_level=True)
11
12
13
class Test_Activation(parameterized.TestCase):
0 commit comments