parent
527103b834
commit
3137e7ccb6
@ -0,0 +1 @@
|
||||
/tox-1.4.2.zip
|
@ -0,0 +1,92 @@
|
||||
# Tests requiring Internet connections are disabled by default
|
||||
# pass --with internet to run them (e.g. when doing a local rebuild
|
||||
# for sanity checks before committing)
|
||||
%bcond_with internet
|
||||
|
||||
|
||||
%global pypiname tox
|
||||
Name: python-tox
|
||||
Version: 1.4.2
|
||||
Release: 6%{?dist}
|
||||
Summary: Virtualenv-based automation of test activities
|
||||
|
||||
# file toxbootstrap.py is licensed under MIT License
|
||||
License: GPLv2+ and MIT
|
||||
URL: http://codespeak.net/tox
|
||||
Source0: http://pypi.python.org/packages/source/t/%{pypiname}/%{pypiname}-%{version}.zip
|
||||
#md5=dc52acf22eb57eaa33e704f8a54e7b34
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python-setuptools
|
||||
# required for check
|
||||
%if 0%{?fedora}
|
||||
BuildRequires: python-py
|
||||
BuildRequires: pytest
|
||||
BuildRequires: python-virtualenv
|
||||
%endif
|
||||
|
||||
%description
|
||||
Tox as is a generic virtualenv management and test command line tool you
|
||||
can use for:
|
||||
|
||||
- checking your package installs correctly with different Python versions
|
||||
and interpreters
|
||||
- running your tests in each of the environments, configuring your test tool
|
||||
of choice
|
||||
- acting as a frontend to Continuous Integration servers, greatly reducing
|
||||
boilerplate and merging CI and shell-based testing.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{pypiname}-%{version}
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
%install
|
||||
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
||||
|
||||
# if internet connection available, run tests
|
||||
%if %{with internet}
|
||||
%check
|
||||
# python 2.7: fedora 17, fedora 18
|
||||
# python 3.2: fedora 17
|
||||
# python 3.3: fedora 18
|
||||
|
||||
# el6: buildrequirements missing
|
||||
#%if 0%{?rhel}==6
|
||||
#TOXENV=py26 %{__python} setup.py test
|
||||
#%endif
|
||||
|
||||
%if 0%{?fedora}==17 || 0%{?fedora}==18
|
||||
TOXENV=py27 %{__python} setup.py test
|
||||
%endif
|
||||
|
||||
%endif
|
||||
|
||||
%files
|
||||
%doc LICENSE README.txt ISSUES.txt doc
|
||||
%{_bindir}/%{pypiname}
|
||||
%{python_sitelib}/%{pypiname}
|
||||
%{python_sitelib}/%{pypiname}-%{version}-py2.?.egg-info
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Oct 18 2012 Matthias Runge <mrunge@redhat.com> - 1.4.2-6
|
||||
- change license to GPLv2+ and MIT
|
||||
|
||||
* Tue Oct 16 2012 Matthias Runge <mrunge@redhat.com> - 1.4.2-5
|
||||
- totally disable python3 support for now
|
||||
|
||||
* Fri Oct 12 2012 Matthias Runge <mrunge@redhat.com> - 1.4.2-4
|
||||
- conditionalize checks, as internet connection required, not available on koji
|
||||
|
||||
* Thu Oct 11 2012 Matthias Runge <mrunge@redhat.com> - 1.4.2-3
|
||||
- buildrequirement: virtualenv
|
||||
- disable python3-tests because of missing build-requirement python3-virtualenv
|
||||
|
||||
* Wed Oct 10 2012 Matthias Runge <mrunge@redhat.com> - 1.4.2-2
|
||||
- include tests
|
||||
|
||||
* Tue Oct 09 2012 Matthias Runge <mrunge@redhat.com> - 1.4.2-1
|
||||
- initial packaging
|
Loading…
Reference in new issue