Skip to content

Commit

Permalink
remove watchfiles from ignore directory list (#249)
Browse files Browse the repository at this point in the history
Co-authored-by: Samuel Colvin <[email protected]>
  • Loading branch information
CharlesFr and samuelcolvin authored Aug 7, 2024
1 parent e3ab1d1 commit d1f0ca8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_customising_filters():
assert f._ignore_paths == ('/a/b',)

# unchanged
assert DefaultFilter.ignore_dirs == IsTuple('__pycache__', length=12)
assert DefaultFilter.ignore_dirs == IsTuple('__pycache__', length=11)


def test_repr():
Expand Down
1 change: 0 additions & 1 deletion watchfiles/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ class DefaultFilter(BaseFilter):
'.svn',
'.tox',
'.venv',
'site-packages',
'.idea',
'node_modules',
'.mypy_cache',
Expand Down

0 comments on commit d1f0ca8

Please sign in to comment.