Codebase list python-pygerrit2 / 1dafe80
Fix non-standard tests run Filip Pytloun 6 years ago
2 changed file(s) with 6 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
2727 Depends:
2828 ${misc:Depends},
2929 ${python:Depends},
30 Description: client library to interact with Gerrit Code Review via the REST API - Python 2.7
30 Description: library to interact with Gerrit via the REST API - Python 2.7
3131 pygerrit2 is simple Python library to provide interface to interact with
3232 Gerrit Code Review via it's REST API.
3333 .
3939 Depends:
4040 ${misc:Depends},
4141 ${python3:Depends},
42 Description: client library to interact with Gerrit Code Review via the REST API - Python 3.x
42 Description: library to interact with Gerrit via the REST API - Python 3.x
4343 pygerrit2 is simple Python library to provide interface to interact with
4444 Gerrit Code Review via it's REST API.
4545 .
66
77 %:
88 dh $@ --with python2,python3 --buildsystem=pybuild
9
10 override_dh_auto_test:
11 for py in $$(pyversions -r 2>/dev/null) ; do echo "Testing with $$py:" ; $$py unittests.py; done
12 for py in $$(py3versions -r 2>/dev/null) ; do echo "Testing with $$py:" ; $$py unittests.py; done