Skip to content

Commit

Permalink
Remove test that causes errors in test shutdown
Browse files Browse the repository at this point in the history
- using fs_module can cause such errors with some
  combinations of tests
- should fix #687
  • Loading branch information
mrbean-bremen committed Jul 14, 2022
1 parent c88c85a commit ffb8fb0
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions pyfakefs/pytest_tests/pytest_plugin_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
import os
import tempfile

import pytest

from pyfakefs.fake_filesystem_unittest import Pause


Expand Down Expand Up @@ -52,13 +50,3 @@ def test_pause_resume_contextmanager(fs):
assert os.path.exists(real_temp_file.name)
assert not os.path.exists(real_temp_file.name)
assert os.path.exists(fake_temp_file.name)


class TestModuleScopedFsWithTmpdir:
@pytest.fixture(autouse=True)
def test_internal(self, tmpdir):
yield

def test_fail(self, fs_module):
# Regression test for #684
assert True

0 comments on commit ffb8fb0

Please sign in to comment.