Skip to content
Snippets Groups Projects
Commit c33258d6 authored by Alexandre Detiste's avatar Alexandre Detiste
Browse files

release

parent 16b0b0ea
No related branches found
Tags debian/1.03-1
No related merge requests found
Pipeline #721660 passed with stages
in 6 minutes and 49 seconds
python-irodsclient (0.8.1-4) UNRELEASED; urgency=medium
python-irodsclient (2.1.0-1) unstable; urgency=medium
* Team Upload
* New upstream version 2.1.0
* Mark autopkgtest as superficial (Closes: #974506)
* Add build-dep on python3-xmlrunner, it is now available.
[ Debian Janitor ]
* Update standards version to 4.6.2, no changes needed.
-- Debian Janitor <janitor@jelmer.uk> Sun, 08 Jan 2023 17:38:38 -0000
-- Alexandre Detiste <tchet@debian.org> Sun, 25 Aug 2024 00:46:11 +0200
python-irodsclient (0.8.1-3) unstable; urgency=medium
......
......@@ -4,11 +4,14 @@ Uploaders: Olivier Sallou <osallou@debian.org>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
dh-python,
dh-sequence-python3,
python3-all,
python3-defusedxml <!nocheck>,
python3-six,
python3-prettytable,
python3-setuptools
python3-setuptools,
python3-xmlrunner <!nocheck>,
Rules-Requires-Root: no
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-irodsclient
Vcs-Git: https://salsa.debian.org/python-team/packages/python-irodsclient.git
......@@ -23,4 +26,3 @@ Suggests: ${python3:Suggests}
Description: Client API for iRods
iRODS is an open source distributed data management system.
This is a client API implemented in Python 3
XB-Python-Egg-Name: irods
Author: Michael R. Crusoe <michael.crusoe@gmail.com>
Description: xmlrunner is not packaged for Debian, so just run plainly
--- python-irodsclient.orig/irods/test/runner.py
+++ python-irodsclient/irods/test/runner.py
@@ -9,8 +9,7 @@
from __future__ import absolute_import
import os
import sys
-from unittest import TestLoader, TestSuite
-import xmlrunner
+from unittest import TestLoader, TestSuite, TextTestRunner
import logging
logger = logging.getLogger()
@@ -30,8 +29,7 @@
suite = TestSuite(loader.discover(start_dir='.', pattern='*_test.py',
top_level_dir="."))
- result = xmlrunner.XMLTestRunner(
- verbosity=2, output='/tmp/python-irodsclient/test-reports').run(suite)
+ result = TextTestRunner(verbosity=2).run(suite)
if result.wasSuccessful():
sys.exit(0)
no_xmlrunner
README.rst
README.md
......@@ -5,7 +5,7 @@ export PYBUILD_NAME=irods
# export PYBUILD_TEST_ARGS=python{version} irods/test/runner.py
%:
dh $@ --with python3 --buildsystem=pybuild
dh $@ --buildsystem=pybuild
# Can't test without access to an irods instance,
# and the irods server is not yet in Debian
......
Tests: basic-tests
Depends: python3-all, python3-irodsclient
Restrictions: superficial
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment