Skip to content

Releases: Scony/pytest-timeouts

v1.2.1

21 Sep 06:00
Compare
Choose a tag to compare

Fixed

  • PyTest get_marker warning fix #36

    get_marker was incorrect selected on pytest 3.10.X

v1.2.0

01 May 19:48
Compare
Choose a tag to compare

Added

  • Add support for pytest 4
  • Add code of conduct
  • Add CHANGELOG.md

Changed

  • Add validation of timeout order on startup
  • Move data from setup.py to setup.cfg

Fixed

  • Correct README.md

release v1.1.2

26 Dec 16:29
Compare
Choose a tag to compare
Move data from setup.py to setup.cfg

Also fix printing long description on pypi

release v1.1.1

22 Dec 10:42
Compare
Choose a tag to compare

Changelog

  • fix issue with strict option

release v1.1.0

12 Jul 18:39
Compare
Choose a tag to compare

Changelog

  • support for older pytest (3.1)

release v1.0.0

02 Jul 18:32
cd2dee7
Compare
Choose a tag to compare

Features

  • setup, execution and teardown phase timeouts controllable by:
    • opts: --setup-timeout, --execution-timeout and --teardown-timeout
    • ini: setup_timeout, execution_timeout and teardown_timeout
    • mark: setup_timeout, execution_timeout and teardown_timeout
  • fixed order of timeout settings: opts > markers > ini, control by --timeouts-order
  • --timeouts-order allow change order of override timeout settings, and disable some settings, i.e. --timeout-order i disable markers and opts, any combination is allow
  • timeout disabled when debugging with PDB