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 4f29843 commit 10c68acCopy full SHA for 10c68ac
pymc_experimental/tests/test_pathfinder.py
@@ -12,6 +12,7 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+import platform
16
import sys
17
18
import numpy as np
@@ -21,6 +22,7 @@
21
22
import pymc_experimental as pmx
23
24
25
+@pytest.mark.skipif(platform.machine() != "x86_64", reason="Test requires x86_64 architecture")
26
@pytest.mark.skipif(sys.platform == "win32", reason="JAX not supported on windows.")
27
def test_pathfinder():
28
# Data of the Eight Schools Model
pytest.ini
@@ -3,3 +3,4 @@ filterwarnings =
3
error
4
ignore:.*?(\b(pkg_resources\.declare_namespace)\b).*:DeprecationWarning
5
ignore::UserWarning:arviz.data.inference_data
6
+ ignore::DeprecationWarning:pkg_resources
0 commit comments