Skip to content

Commit 7186b98

Browse files
committed
Suppress specific pytest warning under Python 2.7
- fixes #466
1 parent 78543fb commit 7186b98

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The release versions are PyPi releases.
66
#### New Features
77
* added support for `os.pipe` (see [#473](../../issues/473))
88

9+
#### Fixes
10+
* avoid pytest warning under Python 2.7 (see [#466](../../issues/466))
11+
912
## [Version 3.5.8](https://pypi.python.org/pypi/pyfakefs/3.5.8)
1013

1114
Another bug-fix release that mainly fixes a regression wih Python 2 that has

pyfakefs/fake_filesystem_unittest.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
import sys
4343
import tempfile
4444
import unittest
45+
import warnings
4546
import zipfile # noqa: F401 make sure it gets correctly stubbed, see #427
4647

4748
from pyfakefs.helpers import IS_PY2, IS_PYPY
@@ -478,8 +479,16 @@ def is_fs_function(fct):
478479
# see https://github.com/pytest-dev/py/issues/73
479480
continue
480481

481-
modules = {name: mod for name, mod in module.__dict__.items()
482-
if is_fs_module(mod, name)}
482+
# suppress specific pytest warning - see #466
483+
with warnings.catch_warnings():
484+
warnings.filterwarnings(
485+
'ignore',
486+
message='The compiler package is deprecated',
487+
category=DeprecationWarning,
488+
module='py'
489+
)
490+
modules = {name: mod for name, mod in module.__dict__.items()
491+
if is_fs_module(mod, name)}
483492
for name, mod in modules.items():
484493
self._modules.setdefault(name, set()).add((module,
485494
mod.__name__))

pyfakefs/tests/fake_pathlib_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ def test_getatime(self):
811811
self.skip_real_fs()
812812
dir1 = self.make_path('foo', 'bar1.txt')
813813
path_obj = self.filesystem.create_file(dir1)
814-
path_obj.SetATime(11)
814+
path_obj.st_atime = 11
815815
self.assertEqual(self.os.path.getatime(dir1),
816816
self.os.path.getatime(self.path(dir1)))
817817

0 commit comments

Comments
 (0)