File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ The release versions are PyPi releases.
6
6
#### New Features
7
7
* added support for `os.pipe` (see [#473](../../issues/473))
8
8
9
+ #### Fixes
10
+ * avoid pytest warning under Python 2.7 (see [#466](../../issues/466))
11
+
9
12
## [Version 3.5.8](https://pypi.python.org/pypi/pyfakefs/3.5.8)
10
13
11
14
Another bug-fix release that mainly fixes a regression wih Python 2 that has
Original file line number Diff line number Diff line change 42
42
import sys
43
43
import tempfile
44
44
import unittest
45
+ import warnings
45
46
import zipfile # noqa: F401 make sure it gets correctly stubbed, see #427
46
47
47
48
from pyfakefs .helpers import IS_PY2 , IS_PYPY
@@ -478,8 +479,16 @@ def is_fs_function(fct):
478
479
# see https://github.com/pytest-dev/py/issues/73
479
480
continue
480
481
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 )}
483
492
for name , mod in modules .items ():
484
493
self ._modules .setdefault (name , set ()).add ((module ,
485
494
mod .__name__ ))
Original file line number Diff line number Diff line change @@ -811,7 +811,7 @@ def test_getatime(self):
811
811
self .skip_real_fs ()
812
812
dir1 = self .make_path ('foo' , 'bar1.txt' )
813
813
path_obj = self .filesystem .create_file (dir1 )
814
- path_obj .SetATime ( 11 )
814
+ path_obj .st_atime = 11
815
815
self .assertEqual (self .os .path .getatime (dir1 ),
816
816
self .os .path .getatime (self .path (dir1 )))
817
817
You can’t perform that action at this time.
0 commit comments