Skip to content

Releases: tholo/pytest-flake8

1.1.1

18 Mar 22:14
Compare
Choose a tag to compare
  • Update classifiers to indicate older versions are no longer supported
  • No longer use deprecated pytest constructs
  • Bump requirements to more accurately indicate what is currently needed

1.1.0

05 Mar 06:21
Compare
Choose a tag to compare
  • Drop Python 2 support and dependency on py; from @erikkemperman
  • Drop support for Python 3.5, 3.6
  • Stop testing on Python versions prior to 3.7
  • Add a flake8-max-doc-length option; from @rodrigomologni
  • Fix some minor typos; from @kianmeng

1.0.7

16 Dec 22:37
Compare
Choose a tag to compare
  • Implement collect() for Flake8Item; from @thomascobb
  • Document skipping behavior in README; from @jpyams

1.0.6

16 Dec 22:37
Compare
Choose a tag to compare
  • Fix compatibility with flake8 >= 3.8, from @marc

1.0.5

16 Dec 22:36
Compare
Choose a tag to compare

1.0.4

31 Jan 20:07
Compare
Choose a tag to compare
  • Support flake8 3.7+ by checking existence of "app.make_notifier"; from jirikuncar@github
  • More fixes for Travis CI -- properly specify Python versions, in particular for pypy (and fix a typo)

1.0.3

14 Jan 03:23
Compare
Choose a tag to compare
  • Don't use long deprecated functions from pytest, broke with pytest 4.1.0
  • Fix typo that caused some tests to not run as expected
  • Run Travis CI tests against Python 3.7, and fix some issues with current tox

1.0.2

14 Jan 03:23
Compare
Choose a tag to compare
  • Test on Python 3.7
  • Escape a regex string with r""

Fix junit XML again

30 Apr 19:45
Compare
Choose a tag to compare

Correct how we create junit XML node identifiers; this changed with pytest 3.5.0. Bump minimum required version of pytest to match.

Correct ignores; improve junit XML

30 Apr 19:44
Compare
Choose a tag to compare
  • Honor ignore settings in default flake8 config section; from
    brianbruggeman@github
  • Improve junit XML output; from Struan Judd