diff --git a/CHANGELOG.md b/CHANGELOG.md index 65f35367..abc73340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ Prospector Changelog ## Version 0.7.3 -* [#70](https://github.com/landscapeio/prospector/issues/70) ProfilesThe E265 error from PEP8 - "Block comment should start with a `.yml` extension can now be autoloaded +* File names ending in 'tests.py' will now be ignored if prospector is set to ignore tests (previously, the regular expression only ignored files ending in 'test.py') +* [#70](https://github.com/landscapeio/prospector/issues/70) Profiles starting with a `.yml` extension can now be autoloaded * [#62](https://github.com/landscapeio/prospector/issues/62) For human readable output, the summary of messages will now be printed at the end rather than at the start, so the summary will be what users see when running prospector (without piping into `less` etc) ## Version 0.7.2 diff --git a/prospector/profiles/profiles/no_test_warnings.yaml b/prospector/profiles/profiles/no_test_warnings.yaml index f33652c6..d56ddc79 100644 --- a/prospector/profiles/profiles/no_test_warnings.yaml +++ b/prospector/profiles/profiles/no_test_warnings.yaml @@ -2,4 +2,4 @@ ignore: - ^tests?/? - /tests?(/|$) - (^|/)test_[_a-zA-Z0-9]+.py$ - - (^|/)[_a-zA-Z0-9]+_test.py$ + - (^|/)[_a-zA-Z0-9]+_tests?.py$