2024-01-20 17:07:57 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-test-randomly: add missing tool
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-08-27 22:19:50 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-test-randomly: updated to 3.15.0
3.15.0 (2023-08-15)
* Support Python 3.12.
3.14.0 (2023-08-15)
* Reset the random state for `Model Bakery \
<https://model-bakery.readthedocs.io/en/latest/>`__.
|
2023-07-24 20:51:09 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-test-randomly: updated to 3.13.0
3.13.0 (2023-07-10)
* Drop Python 3.7 support.
|
2023-03-29 11:34:15 by Thomas Klausner | Files touched by this commit (96) |
Log message:
*: use PYTHON_VERSION instead of _PYTHON_VERSION
|
2022-09-08 09:44:36 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-test-randomly: updated to 3.12.0
3.12.0 (2022-05-11)
-------------------
* Support Python 3.11.
3.11.0 (2022-01-10)
-------------------
* Drop Python 3.6 support.
3.10.3 (2021-11-30)
-------------------
* Work on FIPS Python 3.9+, by declaring use of ``hashlib.md5()`` as not used \
for security.
3.10.2 (2021-11-10)
-------------------
* Fix crash when pytest’s cacheprovider is disabled.
* Improve group name in ``pytest --help``.
3.10.1 (2021-08-13)
-------------------
* Fix new shuffling to work when one or more test in a class or module have the
same test id.
3.10.0 (2021-08-13)
-------------------
* Rework shuffling algorithm to use hashing. This means that running a subset
of tests with the same seed will now produce the same ordering as running the
full set of tests. This allows narrowing down ordering-related failures.
* Shuffle before other test collection hooks. This allows
pytest’s `--stepwise flag
<https://docs.pytest.org/en/latest/cache.html#stepwise>`__ to work, among
other things.
3.9.0 (2021-08-12)
------------------
* Add type hints.
3.8.0 (2021-05-10)
------------------
* Support Python 3.10.
3.7.0 (2021-04-11)
------------------
* Drop dependency on ``backports.entry-points-selectable`` by depending on
``importlib-metadata`` version 3.6.0+.
3.6.0 (2021-04-01)
------------------
* Fix deprecation warning from importlib-metadata 3.9.0+.
* Stop distributing tests to reduce package size. Tests are not intended to be
run outside of the tox setup in the repository. Repackagers can use GitHub's
tarballs per tag.
* Drop Python 3.5 support.
3.5.0 (2020-11-16)
------------------
* Support Python 3.9.
* Move license from BSD to MIT License.
3.4.1 (2020-07-10)
------------------
* Fix numpy error ``ValueError: Seed must be between 0 and 2**32 - 1`` when
passed a seed outside of this range.
3.4.0 (2020-05-27)
------------------
* Provide a ``faker_seed`` fixture to set the seed for tests using faker's
pytest fixtures
|
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2020-05-16 18:42:52 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-test-randomly: updated to 3.3.1
3.3.1:
* Fix to work when pytest-xdist is not installed or active
(``PluginValidationError: unknown hook 'pytest_configure_node'``).
3.3.0:
* Add `pytest-xdist <https://pypi.org/project/pytest-xdist/>`__ support.
Previously it only worked reliably when setting ``--randomly-seed``
explicitly. When not provided, the default seed generated in workers could
differ and collection would fail. Now when it is not provided, all xdist
worker processes shared the same default seed generated in the master
process.
3.2.1:
* Update ``MANIFEST.in`` so tests are included in the sdist tarball again.
3.2.0:
* Converted setuptools metadata to configuration file. This meant removing the
``__version__`` attribute from the package. If you want to inspect the
installed version, use
``importlib.metadata.version("pytest-randomly")``
(`docs \
<https://docs.python.org/3.8/library/importlib.metadata.html#distribution-versions>`__ \
/
`backport <https://pypi.org/project/importlib-metadata/>`__).
* Convert reading entrypoints to use ``importlib.metadata``. Depend on
``importlib-metadata`` on Python < 3.8.
* Update Python support to 3.5-3.8.
|