1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
.. _changelog:
=========
Changelog
=========
Versions follow `Semantic Versioning <https://semver.org>`_ (`<major>.<minor>.<patch>`).
Backward incompatible (breaking) changes will only be introduced in major versions with advance notice in the
**Deprecations** section of releases.
.. towncrier-draft-entries::
.. towncrier release notes start
1.3.0 (2022-05-09)
==================
Features
--------
- Support skipping all test cases that access the Internet by setting the
environment variable `NO_INTERNET`. This is useful to make the test run
reproducible and robust for future runs (to avoid breaking in case some random
service on the Internet changes). (`#16 <https://github.com/saltstack/pytest-skip-markers/issues/16>`_)
1.2.0 (2022-02-22)
==================
Features
--------
- Added ``pytest.mark.skip_on_photonos`` and ``pytest.mark.skip_unless_on_photonos`` markers (`#13 <https://github.com/saltstack/pytest-skip-markers/issues/13>`_)
- Added the ``pytest.mark.skip_on_env`` marker. (`#14 <https://github.com/saltstack/pytest-skip-markers/issues/14>`_)
1.1.3 (2022-02-16)
==================
Bug Fixes
---------
- Fixed issue with ``sdist`` recompression for reproducible packages not iterating though subdirectories contents. (`#12 <https://github.com/saltstack/pytest-skip-markers/issues/12>`_)
1.1.2 (2022-02-05)
==================
Bug Fixes
---------
- Set lower required python to `3.5.2` and avoid issues with `flake8-typing-imports`. (`#10 <https://github.com/saltstack/pytest-skip-markers/issues/10>`_)
1.1.1 (2022-02-05)
==================
Bug Fixes
---------
- Allow installing on older minior versions of Py3.5. Looking at you Debian. (`#10 <https://github.com/saltstack/pytest-skip-markers/issues/10>`_)
1.1.0 (2022-01-26)
==================
Improvements
------------
- Maintain the skip location under Pytest >= 7.0.x (`#7 <https://github.com/saltstack/pytest-skip-markers/issues/7>`_)
- The plugin is now fully typed (`#8 <https://github.com/saltstack/pytest-skip-markers/issues/8>`_)
Trivial/Internal Changes
------------------------
- Reproducible builds
* Fix copyright headers hook
* ``towncrier`` now uses ``issue_format`` (`#7 <https://github.com/saltstack/pytest-skip-markers/issues/7>`_)
skip-markers 1.0.0 (2021-10-04)
===============================
Features
--------
- First public release of the Pytest Skip Markers Plugin
|