Compare commits
27 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6be50fb74d | ||
|
|
2e0144badd | ||
|
|
ec3fad94bf | ||
|
|
1afe2ec237 | ||
|
|
e5fa98bc82 | ||
|
|
8fd88ca7a2 | ||
|
|
91ceded8a2 | ||
|
|
cdc6c05e87 | ||
|
|
488eb5dbbd | ||
|
|
7f31276577 | ||
|
|
18333d7f24 | ||
|
|
9a8a210796 | ||
|
|
778897daf8 | ||
|
|
022aa81efd | ||
|
|
32827d6145 | ||
|
|
6d391041b3 | ||
|
|
00210b6359 |
||
|
|
54db8c6f1c | ||
|
|
7ec4001d1d | ||
|
|
c605f8430f | ||
|
|
b4a28133f2 | ||
|
|
b0502d4b10 | ||
|
|
c313e39bed | ||
|
|
aaf2101233 | ||
|
|
5a7f8cc783 | ||
|
|
b7722a81bc | ||
|
|
a4e422a519 |
8 changed files with 147 additions and 16 deletions
1
.fmf/version
Normal file
1
.fmf/version
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
1
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
||||||
/pycotap-1.1.0.tar.gz
|
/pycotap-1.1.0.tar.gz
|
||||||
|
/pycotap-1.3.1.tar.gz
|
||||||
|
|
|
||||||
5
plans/test.fmf
Normal file
5
plans/test.fmf
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
summary: Basic smoke test
|
||||||
|
discover:
|
||||||
|
how: fmf
|
||||||
|
execute:
|
||||||
|
how: tmt
|
||||||
|
|
@ -1,54 +1,127 @@
|
||||||
# Created by pyp2rpm-3.3.2
|
|
||||||
%global pypi_name pycotap
|
%global pypi_name pycotap
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 1.1.0
|
Version: 1.3.1
|
||||||
Release: 7%{?dist}
|
Release: 10%{?dist}
|
||||||
Summary: A tiny test runner that outputs TAP results to standard output
|
Summary: A tiny test runner that outputs TAP results to standard output
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://el-tramo.be/pycotap
|
URL: https://github.com/remko/pycotap
|
||||||
Source0: %{pypi_source}
|
Source0: %{pypi_source}
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3dist(setuptools)
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
pycotap is a simple Python test runner for unit tests that outputs Test Anything
|
pycotap is a simple Python test runner for unit tests that outputs Test Anything
|
||||||
Protocol results directly to standard output.Contrary to other TAP runners
|
Protocol results directly to standard output. Contrary to other TAP runners
|
||||||
for Python, pycotap prints TAP (and *only* TAP) to standard output
|
for Python, pycotap prints TAP (and *only* TAP) to standard output
|
||||||
instead of to a separate file, allowing you to pipe it directly to TAP pretty
|
instead of to a separate file, allowing you to pipe it directly to TAP pretty
|
||||||
printers and processors.
|
printers and processors.
|
||||||
|
|
||||||
%package -n python3-%{pypi_name}
|
%package -n python3-%{pypi_name}
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
%{?python_provide:%python_provide python3-%{pypi_name}}
|
|
||||||
|
|
||||||
%description -n python3-%{pypi_name}
|
%description -n python3-%{pypi_name}
|
||||||
pycotap is a simple Python test runner for unit tests that outputs Test Anything
|
pycotap is a simple Python test runner for unit tests that outputs Test Anything
|
||||||
Protocol results directly to standard output.Contrary to other TAP runners
|
Protocol results directly to standard output. Contrary to other TAP runners
|
||||||
for Python, pycotap prints TAP (and *only* TAP) to standard output
|
for Python, pycotap prints TAP (and *only* TAP) to standard output
|
||||||
instead of to a separate file, allowing you to pipe it directly to TAP pretty
|
instead of to a separate file, allowing you to pipe it directly to TAP pretty
|
||||||
printers and processors.
|
printers and processors.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{pypi_name}-%{version}
|
%autosetup -n %{pypi_name}-%{version}
|
||||||
# Remove bundled egg-info
|
|
||||||
rm -rf %{pypi_name}.egg-info
|
%generate_buildrequires
|
||||||
|
%pyproject_buildrequires
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%py3_install
|
%pyproject_install
|
||||||
|
%pyproject_save_files %{pypi_name}
|
||||||
find %{buildroot}/%{python3_sitelib} -name '*.py' | xargs sed -i '/^#!/d'
|
find %{buildroot}/%{python3_sitelib} -name '*.py' | xargs sed -i '/^#!/d'
|
||||||
|
%__rm -f %{buildroot}/usr/COPYING
|
||||||
|
|
||||||
%files -n python3-%{pypi_name}
|
%check
|
||||||
%{python3_sitelib}/%{pypi_name}
|
%pyproject_check_import
|
||||||
%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
|
|
||||||
|
%files -n python3-%{pypi_name} -f %{pyproject_files}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 1.3.1-10
|
||||||
|
- Rebuilt for Python 3.14.0rc3 bytecode
|
||||||
|
|
||||||
|
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 1.3.1-9
|
||||||
|
- Rebuilt for Python 3.14.0rc2 bytecode
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 09 2025 Shlomi Fish <shlomif@shlomifish.org> 1.3.1-7
|
||||||
|
- Stop using deprecated RPM macros ( https://bugzilla.redhat.com/show_bug.cgi?id=2378026 )
|
||||||
|
|
||||||
|
* Mon Jun 02 2025 Python Maint <python-maint@redhat.com> - 1.3.1-6
|
||||||
|
- Rebuilt for Python 3.14
|
||||||
|
|
||||||
|
* Thu Feb 13 2025 Shlomi Fish <shlomif@shlomifish.org> 1.3.1-5
|
||||||
|
- Update URL.
|
||||||
|
|
||||||
|
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Oct 11 2024 Takao Fujiwara <tfujiwar@redhat.com> 1.3.1-3
|
||||||
|
- Rebuilt for CI
|
||||||
|
|
||||||
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 12 2024 Shlomi Fish <shlomif@shlomifish.org> 1.3.1-1
|
||||||
|
- New upstream release ( https://bugzilla.redhat.com/show_bug.cgi?id=2297455 )
|
||||||
|
|
||||||
|
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 1.1.0-21
|
||||||
|
- Rebuilt for Python 3.13
|
||||||
|
|
||||||
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-20
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-19
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Aug 21 2023 Parag Nemade <pnemade AT fedoraproject DOT org> - 1.1.0-18
|
||||||
|
- Mark this as SPDX license expression converted
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-17
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 1.1.0-16
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-14
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.1.0-13
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.1.0-10
|
||||||
|
- Rebuilt for Python 3.10
|
||||||
|
|
||||||
|
* Sat May 01 2021 Takao Fujiwara <tfujiwar@redhat.com> - 1.1.0-9
|
||||||
|
- Enable CI
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-7
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (pycotap-1.1.0.tar.gz) = dbe8d76c3e4b934dd4ff9ec0d48caafef3ae5583046a7316607b3c8cebf8cb920c68dc46487243aac81823994805c76f2be8ff0cbda593c70b70f268661fa289
|
SHA512 (pycotap-1.3.1.tar.gz) = e7d50340fb4e3f55037a96aaaba419e6753d4499564339b6562317455ed223c3fd93bf41d0bd9654c03a4bea09377daa192ca985bafc96983e4a2261dde348b8
|
||||||
|
|
|
||||||
5
tests/base/main.fmf
Normal file
5
tests/base/main.fmf
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
summary: Simple test of python-pycotap
|
||||||
|
test: ./test.sh
|
||||||
|
framework: beakerlib
|
||||||
|
require:
|
||||||
|
- python3-pycotap
|
||||||
37
tests/base/test.py
Executable file
37
tests/base/test.py
Executable file
|
|
@ -0,0 +1,37 @@
|
||||||
|
#!/usr/bin/python3
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from pycotap import TAPTestRunner
|
||||||
|
from pycotap import LogMode
|
||||||
|
|
||||||
|
|
||||||
|
class SimpleTest(unittest.TestCase):
|
||||||
|
@classmethod
|
||||||
|
def function_name(cls):
|
||||||
|
sys.stdout = sys.__stdout__
|
||||||
|
return sys._getframe().f_back.f_code.co_name
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
print(cls.function_name())
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
print(SimpleTest.function_name())
|
||||||
|
|
||||||
|
def main(self):
|
||||||
|
print(SimpleTest.function_name())
|
||||||
|
|
||||||
|
def test_foo(self):
|
||||||
|
print(SimpleTest.function_name())
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
loader = unittest.TestLoader()
|
||||||
|
runner = TAPTestRunner(test_output_log=LogMode.LogToError)
|
||||||
|
unittest.main(testRunner=runner, testLoader=loader)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
9
tests/base/test.sh
Executable file
9
tests/base/test.sh
Executable file
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
||||||
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||||
|
|
||||||
|
rlJournalStart
|
||||||
|
rlPhaseStartTest
|
||||||
|
rlRun -t "./test.py"
|
||||||
|
rlPhaseEnd
|
||||||
|
rlJournalEnd
|
||||||
Loading…
Add table
Add a link
Reference in a new issue