Skip to content

Commit 92b11fc

Browse files
authored
Fix #622 work around: do not run mpi_test (#623)
1 parent 25b849a commit 92b11fc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pykern/mpi.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
# -*- coding: utf-8 -*-
21
"""MPI support routines
32
43
:copyright: Copyright (c) 2017 RadiaSoft LLC. All Rights Reserved.
54
:license: http://www.apache.org/licenses/LICENSE-2.0.html
65
"""
7-
from __future__ import absolute_import, division, print_function
86

97

108
def checked_call(op):

tests/mpi_test.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# -*- coding: utf-8 -*-
2-
"""
1+
"""test mpi
32
43
:copyright: Copyright (c) 2017 RadiaSoft LLC. All Rights Reserved.
54
:license: http://www.apache.org/licenses/LICENSE-2.0.html
65
"""
7-
from __future__ import absolute_import, division, print_function
6+
87
import pytest
98

109
pytest.importorskip("mpi4py")
1110

1211

12+
@pytest.mark.skip(
13+
reason="fails in build; see https://github.com/radiasoft/pykern/issues/622"
14+
)
1315
def test_checked_call():
1416
from pykern import pkunit
1517
from pykern.pkunit import pkeq

0 commit comments

Comments
 (0)