1
0

Compare commits

4 Commits

Author SHA256 Message Date
7ac14fe215 Accepting request 1225561 from devel:languages:python
- drop optional astunparse dependency for python 3.13

  * Implemented support for filtering tests based on markers. Also
    supports the marker[argument] syntax that goes beyond what pytest

OBS-URL: https://build.opensuse.org/request/show/1225561
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hammett?expand=0&rev=5
2024-11-21 14:19:23 +00:00
689186982c - drop optional astunparse dependency for python 3.13
* Implemented support for filtering tests based on markers. Also
    supports the marker[argument] syntax that goes beyond what pytest

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hammett?expand=0&rev=9
2024-11-21 10:06:56 +00:00
5b072c149d Accepting request 1223972 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1223972
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hammett?expand=0&rev=4
2024-11-14 15:08:42 +00:00
97e03496c3 - Update to 0.10.0
* New programmatic option for not insert cwd
    into sys.path when running
  * Test names have the same syntax as pytest

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hammett?expand=0&rev=7
2024-11-13 14:55:07 +00:00
4 changed files with 21 additions and 9 deletions

3
hammett-0.10.0-gh.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7856e76827849f9dbebeb77245a75af7f2c73b2910fd0d66d9a226209fd9380f
size 27799

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:724a160c9c18aeca6bc9274e53de56bb9466144aa37653a448e40826b933058f
size 27615

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Nov 21 10:06:42 UTC 2024 - Dirk Müller <dmueller@suse.com>
- drop optional astunparse dependency for python 3.13
-------------------------------------------------------------------
Wed Nov 13 14:20:12 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.10.0
* New programmatic option for not insert cwd
into sys.path when running
* Test names have the same syntax as pytest
-------------------------------------------------------------------
Fri Feb 16 17:55:11 UTC 2024 - Ben Greiner <code@bnavigator.de>
@@ -74,8 +87,8 @@ Fri Feb 16 17:55:11 UTC 2024 - Ben Greiner <code@bnavigator.de>
Wed Apr 8 14:39:57 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- update to 0.5.0
* Implemented support for filtering tests based on markers. Also
supports the marker[argument] syntax that goes beyond what pytest
* Implemented support for filtering tests based on markers. Also
supports the marker[argument] syntax that goes beyond what pytest
can do
* Nicer output on failed tests

View File

@@ -17,7 +17,7 @@
Name: python-hammett
Version: 0.9.4
Version: 0.10.0
Release: 0
Summary: Fast python test runner
License: BSD-3-Clause
@@ -29,13 +29,12 @@ BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%if %{python_version_nodots} < 313
Requires: python-astunparse
%endif
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module astunparse}
# /SECTION
%python_subpackages
%description