Skip to content
Commits on Source (2)
pytest-sourceorder (0.5-1) unstable; urgency=low
* Initial release. (Closes: #819408)
-- Timo Aaltonen <tjaalton@debian.org> Mon, 28 Mar 2016 08:46:03 +0300
Source: pytest-sourceorder
Maintainer: Debian FreeIPA Team <pkg-freeipa-devel@lists.alioth.debian.org>
Uploaders: Timo Aaltonen <tjaalton@debian.org>
Section: python
Priority: optional
Build-Depends:
debhelper (>= 9),
dh-python,
python-all (>= 2.6.6-3),
python-setuptools (>= 0.6b3),
python3-all,
python3-setuptools,
Standards-Version: 3.9.7
Homepage: https://fedorahosted.org/python-pytest-sourceorder/
Vcs-Git: https://anonscm.debian.org/git/pkg-freeipa/pytest-sourceorder.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-freeipa/pytest-sourceorder.git
Package: python-pytest-sourceorder
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Description: Test-ordering plugin for pytest (Python 2)
A pytest plugin for ensuring tests within a class are run in source order.
.
This package installes the library for Python 2.
Package: python3-pytest-sourceorder
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Test-ordering plugin for pytest3 (Python 3)
A pytest plugin for ensuring tests within a class are run in source order.
.
This package installes the library for Python 3.
Format: http://dep.debian.net/deps/dep5
Upstream-Name: pytest-sourceorder
Source: https://fedorahosted.org/python-pytest-sourceorder/
Files: *
Copyright: 2013-2015 Red Hat Inc.
License: GPL-3
Files: debian/*
Copyright: 2016 Timo Aaltonen <tjaalton@debian.org>
License: GPL-3
License: GPL-3
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
#!/usr/bin/make -f
# This file was automatically generated by stdeb 0.8.5 at
# Mon, 28 Mar 2016 08:46:03 +0300
export PYBUILD_NAME=pytest-sourceorder
%:
dh $@ --with python2,python3 --buildsystem=pybuild
# please also check http://pypi.debian.net/pytest-sourceorder/watch
version=3
opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
http://pypi.debian.net/pytest-sourceorder/pytest-sourceorder-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file
......@@ -12,12 +12,12 @@
%global srcname pytest-sourceorder
%global modulename pytest_sourceorder
%global srcversion 0.4
%global srcversion 0.5
%global versionedname %{srcname}-%{srcversion}
Name: python-%{srcname}
Version: %{srcversion}
Release: 3%{?dist}
Release: 1%{?dist}
Summary: Test-ordering plugin for pytest
License: GPLv3+
......@@ -123,11 +123,14 @@ popd
%doc README.rst
%{python3_sitelib}/%{modulename}-%{version}-py%{python3_version}.egg-info
%{python3_sitelib}/%{modulename}.py
%{python3_sitelib}/__pycache__/%{modulename}.cpython-3?.py*
%{python3_sitelib}/__pycache__/%{modulename}.cpython-3*.py*
%endif
%changelog
* Mon Mar 2 2015 Petr Viktorin <encukou@gmail.com> - 0.5-1
- Add support for parametrized tests under Python 3
* Mon Mar 2 2015 Petr Viktorin <encukou@gmail.com> - 0.4-3
- Don't use licence macro on RHEL 6
......
......@@ -11,7 +11,7 @@ with io.open('README.rst', 'rt', encoding='utf-8') as f:
setup_args = dict(
name = "pytest-sourceorder",
version = "0.4",
version = "0.5",
description = "Test-ordering plugin for pytest",
long_description = readme_contents,
url = "https://fedorahosted.org/python-pytest-sourceorder/",
......