summaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorMichel Alexandre Salim <salimma@fedoraproject.org>2012-06-04 21:27:21 +0700
committerMichel Alexandre Salim <salimma@fedoraproject.org>2012-06-04 21:27:21 +0700
commita4e504457a0035b1139d6781203cbceada3b62de (patch)
tree4a45176ee32491946104a5f7ea5c4023ea7af3ef /admin
parent229863815cd5368649ae0c94c1a5435a37651203 (diff)
downloadspecs-a4e504457a0035b1139d6781203cbceada3b62de.tar.gz
specs-a4e504457a0035b1139d6781203cbceada3b62de.tar.xz
specs-a4e504457a0035b1139d6781203cbceada3b62de.zip
CoverageTestRunner review done
Diffstat (limited to 'admin')
-rw-r--r--admin/python-coverage-test-runner.spec56
1 files changed, 0 insertions, 56 deletions
diff --git a/admin/python-coverage-test-runner.spec b/admin/python-coverage-test-runner.spec
deleted file mode 100644
index c5da2a4..0000000
--- a/admin/python-coverage-test-runner.spec
+++ /dev/null
@@ -1,56 +0,0 @@
-%global pkgname CoverageTestRunner
-%global prjname coverage-test-runner
-
-Name: python-%{prjname}
-Version: 1.8
-Release: 1%{?dist}
-Summary: Python module for enforcing code coverage completeness
-
-License: GPLv3+
-URL: http://liw.fi/%{prjname}/
-Source0: http://ftp.debian.org/debian/pool/main/p/python-coverage-test-runner/%{name}_%{version}.orig.tar.gz
-
-BuildArch: noarch
-BuildRequires: python-coverage
-Requires: python-coverage
-
-%description
-CoverageTestRunner is a Python module for running unit tests and
-failing them if the unit test module does not exercise all statements
-in the module it tests.
-
-For example, unit tests in module foo_tests.py are supposed to test
-everything in the foo.py module, and if they don't, it's a bug in the
-test coverage. It does not matter if other tests happen to test the
-missing parts. The unit tests for the module should test everything in
-that module.
-
-
-%prep
-%setup -q -n %{pkgname}-%{version}
-
-
-%build
-%{__python} setup.py build
-
-
-%install
-%{__python} setup.py install -O1 --skip-build --root %{buildroot}
-
-
-%check
-make check
-
-
-%files
-%doc COPYING NEWS README
-%{python_sitelib}/*
-
-
-%changelog
-* Mon Jun 4 2012 Michel Salim <salimma@fedoraproject.org> - 1.8-1
-- Update to 1.8
-- Drop unneeded conditional declaration of %%{python_sitelib}
-
-* Sun Jun 3 2012 Michel Salim <salimma@fedoraproject.org> - 1.0-1
-- Initial package