Skip to content

Commit

Permalink
blackened merged files
Browse files Browse the repository at this point in the history
  • Loading branch information
orbeckst committed Sep 15, 2023
1 parent 00a0d5e commit 0de56b0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
9 changes: 5 additions & 4 deletions tests/fileformats/top/test_amber03star.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ class TestAmber03star(TopologyTest):
"ZN",
]

@pytest.mark.xfail(gromacs.release().startswith(("2022", "2023")),
reason="issue #236 https://github.com/Becksteinlab/GromacsWrapper/issues/236")
@pytest.mark.xfail(
gromacs.release().startswith(("2022", "2023")),
reason="issue #236 https://github.com/Becksteinlab/GromacsWrapper/issues/236",
)
def test_mdrun(self, tmpdir, low_performance):
super(TestAmber03star, self).test_mdrun(tmpdir, low_performance)

super(TestAmber03star, self).test_mdrun(tmpdir, low_performance)
9 changes: 5 additions & 4 deletions tests/fileformats/top/test_amber03w.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ class TestAmber03w(TopologyTest):
"ZN",
]

@pytest.mark.xfail(gromacs.release().startswith(("2022", "2023")),
reason="issue #236 https://github.com/Becksteinlab/GromacsWrapper/issues/236")
@pytest.mark.xfail(
gromacs.release().startswith(("2022", "2023")),
reason="issue #236 https://github.com/Becksteinlab/GromacsWrapper/issues/236",
)
def test_mdrun(self, tmpdir, low_performance):
super(TestAmber03w, self).test_mdrun(tmpdir, low_performance)

super(TestAmber03w, self).test_mdrun(tmpdir, low_performance)
6 changes: 3 additions & 3 deletions tests/fileformats/top/top.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
from numpy.testing import assert_array_equal

try:
from pandas.testing import assert_frame_equal
from pandas.testing import assert_frame_equal
except ImportError:
# old versions of pandas
from pandas.util.testing import assert_frame_equal
# old versions of pandas
from pandas.util.testing import assert_frame_equal

import pytest

Expand Down

0 comments on commit 0de56b0

Please sign in to comment.