Skip to content
Snippets Groups Projects
Commit d861abd6 authored by Barry Warsaw's avatar Barry Warsaw :sleeping:
Browse files

Fix FTBFS, bump Standards-Version, add DEP-8 tests.

* d/rules: override_dh_auto_test: Don't run the test suite at build time
  since upstream's tests/ directory isn't included in the tarball.
  (Closes: #815294)
* d/control: Bump Standards-Version to 3.9.7 with no other changes needed.
* d/tests/: Added simple import-based DEP-8 tests.
parent a49f50bd
No related branches found
No related tags found
No related merge requests found
python-scripttest (1.3-2) UNRELEASED; urgency=medium
[ Ondřej Nový ]
* Fixed VCS URL (https)
-- Ondřej Nový <novy@ondrej.org> Tue, 29 Mar 2016 22:22:37 +0200
[ Barry Warsaw ]
* d/rules: override_dh_auto_test: Don't run the test suite at build time
since upstream's tests/ directory isn't included in the tarball.
(Closes: #815294)
* d/control: Bump Standards-Version to 3.9.7 with no other changes needed.
* d/tests/: Added simple import-based DEP-8 tests.
-- Barry Warsaw <barry@debian.org> Mon, 11 Apr 2016 16:31:42 -0400
python-scripttest (1.3-1) unstable; urgency=medium
......
......@@ -3,7 +3,7 @@ Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Thomas Bechtold <thomasbechtold@jpberlin.de>
Standards-Version: 3.9.5
Standards-Version: 3.9.7
Build-Depends: debhelper (>= 9),
dh-python,
python-all (>= 2.6.6-3~),
......
......@@ -4,3 +4,5 @@ export PYBUILD_NAME=scripttest
%:
dh $@ --with python2,python3 --buildsystem=pybuild
override_dh_auto_test:
Test-Command: python -c "import scripttest; print scripttest.__file__"
Test-Command: python3 -c "import scripttest; print(scripttest.__file__)"
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