14
0

Accepting request 811106 from home:mcalabkova:branches:devel:languages:python

- replace nose with pytest

OBS-URL: https://build.opensuse.org/request/show/811106
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sqlitedict?expand=0&rev=13
This commit is contained in:
Tomáš Chvátal
2020-06-03 12:56:22 +00:00
committed by Git OBS Bridge
parent badc90357d
commit 4dcbfd8a48
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Jun 3 09:28:59 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- replace nose with pytest
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 08:05:54 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com> Wed Dec 11 08:05:54 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-sqlitedict # spec file for package python-sqlitedict
# #
# Copyright (c) 2019 SUSE LLC # Copyright (c) 2020 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@ Summary: Persistent dict in Python backed by sqlite3
License: Apache-2.0 License: Apache-2.0
URL: https://github.com/piskvorky/sqlitedict URL: https://github.com/piskvorky/sqlitedict
Source: https://files.pythonhosted.org/packages/source/s/sqlitedict/sqlitedict-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/s/sqlitedict/sqlitedict-%{version}.tar.gz
BuildRequires: %{python_module nose} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{pythons} BuildRequires: %{pythons}
BuildRequires: fdupes BuildRequires: fdupes
@@ -52,7 +52,7 @@ sed -i -e '/^#!\//, 1d' sqlitedict.py
%{python_expand # db needs to be regenerated %{python_expand # db needs to be regenerated
rm -rf tests/db rm -rf tests/db
mkdir -p tests/db mkdir -p tests/db
nosetests-%{$python_bin_suffix} -v PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix}
} }
%files %{python_files} %files %{python_files}