Skip to content

Commit 7a75aee

Browse files
committed
Added newly introduced compile_pattern method to flavour classes
- copied original versions from _PosixFlavour/_WindowsFlavour into respective fake classes - use newest available Python version in Travis builds - see #508
1 parent f7ee177 commit 7a75aee

File tree

4 files changed

+31
-13
lines changed

4 files changed

+31
-13
lines changed

.travis.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
script:
3636
- ./.travis/run_tests.sh
3737
- ./.travis/run_pytest_plugin_test.sh
38-
python: 3.5
38+
python: 3.5.9
3939
env:
4040
- PYTHON=py35
4141
- PY_VERSION=3.5.9
@@ -45,7 +45,7 @@ jobs:
4545
- ./.travis/run_tests.sh
4646
- ./.travis/run_pytest_fixture_test.sh
4747
- ./.travis/run_pytest_plugin_test.sh
48-
python: 3.6
48+
python: 3.6.9
4949
env:
5050
- PYTHON=py36
5151
- PY_VERSION=3.6.9
@@ -55,7 +55,7 @@ jobs:
5555
- ./.travis/run_tests.sh
5656
- ./.travis/run_pytest_fixture_test.sh
5757
- ./.travis/run_pytest_plugin_test.sh
58-
python: 3.7
58+
python: 3.7.5
5959
dist: xenial
6060
sudo: true
6161
env:
@@ -67,12 +67,12 @@ jobs:
6767
- ./.travis/run_tests.sh
6868
- ./.travis/run_pytest_fixture_test.sh
6969
- ./.travis/run_pytest_plugin_test.sh
70-
python: 3.8
70+
python: 3.8.1
7171
dist: xenial
7272
sudo: true
7373
env:
7474
- PYTHON=py38
75-
- PY_VERSION=3.8.0
75+
- PY_VERSION=3.8.1
7676

7777
- stage: test
7878
script:
@@ -120,7 +120,7 @@ jobs:
120120
language: generic
121121
env:
122122
- PYTHON=py37
123-
- PY_VERSION=3.7.5
123+
- PY_VERSION=3.7.6
124124

125125
- stage: test
126126
script:
@@ -131,7 +131,7 @@ jobs:
131131
language: generic
132132
env:
133133
- PYTHON=py38
134-
- PY_VERSION=3.8.0
134+
- PY_VERSION=3.8.1
135135

136136
- stage: test
137137
script:

CHANGES.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,31 @@ the proposed changes so you can be ready.
1010
* pyfakefs 4.0 drops support for Python 2.7. If you still need
1111
Python 2.7, you can continue to use the latest pyfakefs 3.x version.
1212

13+
## [Version 3.7.1](https://pypi.python.org/pypi/pyfakefs/3.7.1)
14+
15+
This version adds support for Python 3.7.6 and 3.8.1.
16+
17+
#### Fixes
18+
* Adapted fake `pathlib` to changes in Python 3.7.6/3.8.1
19+
(see [#508](../../issues/508))
20+
1321
## [Version 3.7](https://pypi.python.org/pypi/pyfakefs/3.7)
1422

23+
#### Fixes
24+
1525
This version adds support for Python 3.8.
1626

1727
_Note:_ This is the last pyfakefs version that will support Python 2.7
1828
and Python 3.4 (possible bug fix releases notwithstanding).
1929

20-
### Enhancements
30+
#### Enhancements
2131
* added support for Python 3.8 (see [#504](../../issues/504))
2232
* added preliminary support for Windows-specific `os.stat_result` attributes
2333
`tst_file_attributes` and `st_reparse_tag` (see [#504](../../issues/504))
2434
* added support for fake `os.sendfile` (Posix only, Python 3 only)
2535
(see [#504](../../issues/504))
2636

27-
### Fixes
37+
#### Fixes
2838
* support `devnull` in Windows under Python 3.8
2939
(see [#504](../../issues/504))
3040
* fixed side effect of calling `DirEntry.stat()` under Windows (changed
@@ -36,13 +46,13 @@ and Python 3.4 (possible bug fix releases notwithstanding).
3646
* raise for `os.scandir` with non-existing directory
3747
(see [#498](../../issues/498))
3848

39-
### Infrastructure
49+
#### Infrastructure
4050
* fixed CI tests scripts to always propagate errors
4151
(see [#500](../../issues/500))
4252

4353
## [Version 3.6.1](https://pypi.python.org/pypi/pyfakefs/3.6.1)
4454

45-
### Fixes
55+
#### Fixes
4656
* avoid rare side effect during module iteration in test setup
4757
(see [#338](../../issues/338))
4858
* make sure real OS tests are not executed by default

pyfakefs/fake_pathlib.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@
2828
(including PurePosixPath, PosixPath, PureWindowsPath and WindowsPath)
2929
get the properties of the underlying fake filesystem.
3030
"""
31-
31+
import fnmatch
3232
import os
33+
import re
3334

3435
try:
3536
from urllib.parse import quote_from_bytes as urlquote_from_bytes
@@ -405,6 +406,9 @@ def gethomedir(self, username):
405406
userhome = self.join(parts)
406407
return userhome
407408

409+
def compile_pattern(self, pattern):
410+
return re.compile(fnmatch.translate(pattern), re.IGNORECASE).fullmatch
411+
408412

409413
class _FakePosixFlavour(_FakeFlavour):
410414
"""Flavour used by PurePosixPath with some Unix specific implementations
@@ -436,6 +440,9 @@ def gethomedir(self, username):
436440
raise RuntimeError("Can't determine home directory "
437441
"for %r" % username)
438442

443+
def compile_pattern(self, pattern):
444+
return re.compile(fnmatch.translate(pattern)).fullmatch
445+
439446

440447
path_module = pathlib.Path if pathlib else object
441448

pyfakefs/tests/fake_pathlib_test.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -711,8 +711,8 @@ def test_glob(self):
711711
[self.path(self.make_path('foo', 'all_tests.py')),
712712
self.path(self.make_path('foo', 'setup.py'))])
713713

714+
@unittest.skipIf(not is_windows, 'Windows specific test')
714715
def test_glob_case_windows(self):
715-
self.check_windows_only()
716716
self.create_file(self.make_path('foo', 'setup.py'))
717717
self.create_file(self.make_path('foo', 'all_tests.PY'))
718718
self.create_file(self.make_path('foo', 'README.md'))
@@ -723,6 +723,7 @@ def test_glob_case_windows(self):
723723
self.path(self.make_path('foo', 'example.Py')),
724724
self.path(self.make_path('foo', 'setup.py'))])
725725

726+
@unittest.skipIf(is_windows, 'Posix specific test')
726727
def test_glob_case_posix(self):
727728
self.check_posix_only()
728729
self.create_file(self.make_path('foo', 'setup.py'))

0 commit comments

Comments
 (0)