aboutsummaryrefslogtreecommitdiff
path: root/pyfakefs
diff options
context:
space:
mode:
authormrbean-bremen <hansemrbean@googlemail.com>2022-10-09 09:59:39 +0200
committermrbean-bremen <mrbean-bremen@users.noreply.github.com>2022-10-09 18:10:31 +0200
commitf0723a7c7126c6582f31519c1c63e35c76ab9afd (patch)
tree3a96bf4eb73a9f606c1ddd636df95a62d5568827 /pyfakefs
parentcd4abaf7f7c13962e0ab8db3937499dd556353dd (diff)
downloadpyfakefs-f0723a7c7126c6582f31519c1c63e35c76ab9afd.tar.gz
Move documentation from GH Pages to Read the Docs
Diffstat (limited to 'pyfakefs')
-rw-r--r--pyfakefs/tests/patched_packages_test.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pyfakefs/tests/patched_packages_test.py b/pyfakefs/tests/patched_packages_test.py
index 8c3f106..eab3587 100644
--- a/pyfakefs/tests/patched_packages_test.py
+++ b/pyfakefs/tests/patched_packages_test.py
@@ -36,6 +36,7 @@ except ImportError:
openpyxl = None
+@unittest.skipIf(IS_PYPY, "Has a problem with current PyPy")
class TestPatchedPackages(fake_filesystem_unittest.TestCase):
def setUp(self):
self.setUpPyfakefs()
@@ -47,7 +48,6 @@ class TestPatchedPackages(fake_filesystem_unittest.TestCase):
df = pd.read_csv(path)
assert (df.columns == ['1', '2', '3', '4']).all()
- @unittest.skipIf(IS_PYPY, "Has a problem with current PyPy")
def test_read_table(self):
path = '/foo/bar.csv'
self.fs.create_file(path, contents='1|2|3|4')
@@ -55,7 +55,6 @@ class TestPatchedPackages(fake_filesystem_unittest.TestCase):
assert (df.columns == ['1', '2', '3', '4']).all()
if pd is not None and xlrd is not None:
- @unittest.skipIf(IS_PYPY, "Has a problem with current PyPy")
def test_read_excel(self):
path = '/foo/bar.xlsx'
src_path = os.path.dirname(os.path.abspath(__file__))
@@ -67,7 +66,6 @@ class TestPatchedPackages(fake_filesystem_unittest.TestCase):
assert (df.columns == [1, 2, 3, 4]).all()
if pd is not None and openpyxl is not None:
- @unittest.skipIf(IS_PYPY, "Has a problem with current PyPy")
def test_write_excel(self):
self.fs.create_dir('/foo')
path = '/foo/bar.xlsx'