mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Add expected failure for mgxs_library_distribcell on Python 3.5
This commit is contained in:
parent
3813b1cdb1
commit
efb3beb8ce
1 changed files with 4 additions and 0 deletions
|
|
@ -1,8 +1,10 @@
|
|||
import hashlib
|
||||
import sys
|
||||
|
||||
import openmc
|
||||
import openmc.mgxs
|
||||
from openmc.examples import pwr_assembly
|
||||
import pytest
|
||||
|
||||
from tests.testing_harness import PyAPITestHarness
|
||||
|
||||
|
|
@ -64,6 +66,8 @@ class MGXSTestHarness(PyAPITestHarness):
|
|||
return outstr
|
||||
|
||||
|
||||
@pytest.mark.xfail(sys.version_info < (3, 6),
|
||||
reason="Pandas 1.0 API changed and requires Python 3.6+")
|
||||
def test_mgxs_library_distribcell():
|
||||
model = pwr_assembly()
|
||||
harness = MGXSTestHarness('statepoint.10.h5', model)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue