1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
|
pytest (8.3.5-2) unstable; urgency=medium
* Fix compatibility with attrs >= 25.2 (Closes: #1101860)
* Bump Standards-Version to 4.7.2
-- Timo Röhling <roehling@debian.org> Tue, 01 Apr 2025 21:35:12 +0200
pytest (8.3.5-1) unstable; urgency=medium
* New upstream version 8.3.5
-- Timo Röhling <roehling@debian.org> Sun, 09 Mar 2025 20:15:54 +0100
pytest (8.3.4-1) unstable; urgency=medium
* New upstream version 8.3.4
* Wrap and sort Debian package files
* Remove old Breaks declarations
-- Timo Röhling <roehling@debian.org> Wed, 04 Dec 2024 15:51:21 +0100
pytest (8.3.3-1) unstable; urgency=medium
* New upstream version 8.3.3
-- Timo Röhling <roehling@debian.org> Sun, 15 Sep 2024 09:41:58 +0200
pytest (8.3.2-1) unstable; urgency=medium
* New upstream version 8.3.2
* Make the build reproducible.
Thanks to Chris Lamb (Closes: #1077485)
-- Timo Röhling <roehling@debian.org> Wed, 31 Jul 2024 01:57:33 +0200
pytest (8.3.1-1) unstable; urgency=medium
* New upstream version 8.3.1
* Update patches
- Drop backported fix for flaky test plugins
* Update build depends
* Bump Standards-Version to 4.7.0
-- Timo Röhling <roehling@debian.org> Thu, 25 Jul 2024 10:50:25 +0200
pytest (8.2.2-2) unstable; urgency=medium
* Fix test regressions for flaky test plugins.
Thanks to Chris Peterson (Closes: #1072810)
-- Timo Röhling <roehling@debian.org> Thu, 13 Jun 2024 00:24:50 +0200
pytest (8.2.2-1) unstable; urgency=medium
* New upstream version 8.2.2
* Refresh patches (no functional change)
* Documentation builds with Furo theme now
-- Timo Röhling <roehling@debian.org> Wed, 05 Jun 2024 15:34:35 +0200
pytest (8.2.1-2) unstable; urgency=medium
[ Michael R. Crusoe ]
* d/control: breaks older versions of the mypy and astropy packages.
-- Timo Röhling <roehling@debian.org> Mon, 27 May 2024 23:29:56 +0200
pytest (8.2.1-1) unstable; urgency=medium
* New upstream version 8.2.1
* Update patches
- Drop Ignore-permission-denied-errors-during-directory-col.patch
(obsolete, fixed in upstream)
-- Timo Röhling <roehling@debian.org> Mon, 27 May 2024 13:37:10 +0200
pytest (8.1.2-1) unstable; urgency=medium
* New upstream version 8.1.2
* Refresh patches (no functional changes)
-- Timo Röhling <roehling@debian.org> Tue, 30 Apr 2024 12:53:11 +0200
pytest (8.1.1-2) unstable; urgency=medium
* Update patches
- Merge Sphinx config patches into Disable-Sphinx-extensions.patch
- Add patch to ignore permission errors during directory collection
-- Timo Röhling <roehling@debian.org> Thu, 25 Apr 2024 11:03:08 +0200
pytest (8.1.1-1) unstable; urgency=medium
[ Ondřej Nový ]
* Remove myself from Uploaders.
[ Timo Röhling ]
* New upstream version 8.1.1
* Drop B-D on python3-twisted
-- Timo Röhling <roehling@debian.org> Tue, 19 Mar 2024 14:43:09 +0100
pytest (8.0.2-1) unstable; urgency=medium
* New upstream version 8.0.2
* Refresh patches (no functional changes)
-- Timo Röhling <roehling@debian.org> Mon, 26 Feb 2024 12:00:38 +0100
pytest (8.0.1-1) experimental; urgency=medium
* New upstream version 8.0.1
* Refresh patches (no functional changes)
-- Timo Röhling <roehling@debian.org> Mon, 19 Feb 2024 17:39:13 +0100
pytest (8.0.0-1) experimental; urgency=medium
* New upstream version 8.0.0
-- Timo Röhling <roehling@debian.org> Mon, 29 Jan 2024 15:13:36 +0100
pytest (8.0.0~rc1-1) experimental; urgency=medium
* New upstream version 8.0.0~rc1
* Refresh patches (no functional changes)
-- Timo Röhling <roehling@debian.org> Wed, 03 Jan 2024 13:13:09 +0100
pytest (7.4.4-3) unstable; urgency=medium
* Depend on pluggy >= 1.4.0 as the test fix breaks with older versions
-- Timo Röhling <roehling@debian.org> Mon, 05 Feb 2024 14:40:23 +0100
pytest (7.4.4-2) unstable; urgency=medium
[ Alexandre Detiste ]
* Remove extraneous python3-mock build-dep
[ Timo Röhling ]
* Fix test failures with pluggy 1.4.0
-- Timo Röhling <roehling@debian.org> Mon, 29 Jan 2024 13:47:47 +0100
pytest (7.4.4-1) unstable; urgency=medium
* New upstream version 7.4.4
-- Timo Röhling <roehling@debian.org> Tue, 02 Jan 2024 20:49:04 +0100
pytest (7.4.3-2) unstable; urgency=medium
* Fix incorrect {build_dir} query in d/rules (Closes: #1058342)
* Drop obsolete PYBUILD_TEST_CUSTOM workaround
-- Timo Röhling <roehling@debian.org> Tue, 12 Dec 2023 16:02:32 +0100
pytest (7.4.3-1) unstable; urgency=medium
* New upstream version 7.4.3
-- Timo Röhling <roehling@debian.org> Thu, 26 Oct 2023 10:50:16 +0200
pytest (7.4.2-1) unstable; urgency=medium
* New upstream version 7.4.2
-- Timo Röhling <roehling@debian.org> Tue, 12 Sep 2023 13:21:20 +0200
pytest (7.4.1-1) unstable; urgency=medium
* Add myself to uploaders
* New upstream version 7.4.1
* Update d/copyright
-- Timo Röhling <roehling@debian.org> Tue, 05 Sep 2023 15:17:54 +0200
pytest (7.4.0-2) unstable; urgency=medium
* Team upload.
* Update Build-Depends and fix "nocheck" profile
-- Timo Röhling <roehling@debian.org> Wed, 05 Jul 2023 00:00:14 +0200
pytest (7.4.0-1) unstable; urgency=medium
* Team upload.
* New upstream version 7.4.0
- Fixes a testpath discovery regression which may affect autopkgtest
* Refresh patches
- Mark all Debian-specific patches as Forwarded: not-needed
* Migrate debian/watch to version 4 format
-- Timo Röhling <roehling@debian.org> Tue, 04 Jul 2023 13:07:33 +0200
pytest (7.3.2-1) unstable; urgency=medium
* Team upload.
* New upstream version 7.3.2
-- Timo Röhling <roehling@debian.org> Fri, 16 Jun 2023 20:40:49 +0200
pytest (7.2.1-2) unstable; urgency=medium
* Team upload.
* Drop depends on python3-exceptiongroup and python3-tomli
* Add depend on pybuild-plugin-pyproject
-- Timo Röhling <roehling@debian.org> Wed, 01 Feb 2023 16:28:14 +0100
pytest (7.2.1-1) unstable; urgency=medium
* Team upload.
* New upstream version 7.2.1
* Drop patch for Python 3.11 test workarounds (fixed by upstream)
-- Timo Röhling <roehling@debian.org> Mon, 16 Jan 2023 14:56:01 +0100
pytest (7.2.0-4) unstable; urgency=medium
* Team upload.
* Fix dependency issues with Python 3.11 transition.
Both python3-exceptiongroup and python3-tomli are no longer
needed with Python 3.11, but as long as Python 3.10 is still
in the archive, pytest should depend on them to not break
Python 3.10 tests. (Closes: #1027751)
* Drop ${sphinxdoc:Built-Using} from python-pytest-doc
* Bump Standards-Version to 4.6.2
-- Timo Röhling <roehling@debian.org> Mon, 02 Jan 2023 22:57:25 +0100
pytest (7.2.0-3) unstable; urgency=medium
* Team upload.
[ Jochen Sprickerhof ]
* Drop unused build-depends
-- Timo Röhling <roehling@debian.org> Thu, 22 Dec 2022 00:49:17 +0100
pytest (7.2.0-2) unstable; urgency=medium
* Team upload.
* Upload to unstable.
* Drop ancient d/NEWS
-- Timo Röhling <roehling@debian.org> Wed, 14 Dec 2022 19:42:41 +0100
pytest (7.2.0-1) experimental; urgency=medium
* Team upload.
* New upstream version 7.2.0
* Use autopkgtest-pkg-pybuild
* Ignore flaky test_raise_assertion_error_raising_repr with Python < 3.11
-- Timo Röhling <roehling@debian.org> Mon, 12 Dec 2022 18:26:20 +0100
pytest (7.1.2-4) unstable; urgency=medium
[ Debian Janitor ]
* Remove obsolete field Name from debian/upstream/metadata (already present in machine-readable debian/copyright).
* Remove constraints unnecessary since buster (oldstable)
* Apply multi-arch hints. + python-pytest-doc: Add Multi-Arch: foreign.
-- Jelmer Vernooij <jelmer@debian.org> Fri, 14 Oct 2022 11:37:43 +0100
pytest (7.1.2-3) unstable; urgency=medium
* Team upload
[ Andreas Hasenack ]
* d/t/control: also depend on lsof, used in the unittests-3 tests
* d/t/control: Add allow-stderr restriction (LP: #1984135)
-- Bastian Germann <bage@debian.org> Tue, 27 Sep 2022 09:35:16 +0200
pytest (7.1.2-2) unstable; urgency=medium
* upload to unstable
-- Sandro Tosi <morph@debian.org> Fri, 24 Jun 2022 23:09:47 -0400
pytest (7.1.2-1) experimental; urgency=medium
* New upstream release; Closes: #1010605
* Refresh patches
* debian/control
- run wrap-and-sort
- bump Standard-Version to 4.6.1 (no changes needed)
* debian/patches/PR10026.patch
- fix manpage source location
* debian/patches/0004-Fix-test_errors_in_xfail_skip_expressions-for-Python.patch
- drop patch, merged upstream
* debian/copyright
- update upstream copyright years
-- Sandro Tosi <morph@debian.org> Tue, 07 Jun 2022 15:46:15 -0400
pytest (6.2.5-3) unstable; urgency=medium
* Team upload.
* Keep upstream's entry points
-- Bastian Germann <bage@debian.org> Fri, 20 May 2022 21:20:14 +0200
pytest (6.2.5-2) unstable; urgency=medium
* Team upload.
* Add upstream patch to fix test failure (Closes: #1002389)
* Drop pluggy version restriction
-- Jochen Sprickerhof <jspricke@debian.org> Tue, 15 Mar 2022 08:05:09 +0100
pytest (6.2.5-1) unstable; urgency=medium
[ Scott Talbert ]
* Update pytest-xdist Breaks version
[ Sandro Tosi ]
* New upstream release; Closes: #979477
-- Sandro Tosi <morph@debian.org> Tue, 07 Sep 2021 21:35:38 -0400
pytest (6.0.2-2) unstable; urgency=medium
* Uploading to unstable.
* Ignore changes in src/_pytest/_version.py,
autogenerated with setuptools_scm
(Closes: #978289).
-- Ondřej Nový <onovy@debian.org> Sat, 02 Jan 2021 14:34:07 +0100
pytest (6.0.2-1) experimental; urgency=medium
* New upstream release.
-- Ondřej Nový <onovy@debian.org> Mon, 26 Oct 2020 13:31:47 +0100
pytest (6.0.1-1) experimental; urgency=medium
[ Christian Kastner ]
* New upstream release. (Closes: #965929)
- Refresh patches
- Drop obsolete patches
* d/watch: Drop the 4.* limit
* Add to Build-Depends, mostly for build-time tests: python3-argcomplete,
python3-iniconfig, python3-mock, python3-pluggy, python3-requests,
python3-toml, python3-pallets-sphinx-themes, python3-xmlschema
* Skip failing test_code_highlight failing with pygments 2.3.1
* Add python3-pygments to Build-Depends
* Add python3-pygments to Recommends
* Re-enable previously failing tests that now pass
* Add autopkgtest for full upstream test suite
* Update d/copyright
[ Ondřej Nový ]
* d/control: Update Maintainer field with new Debian Python Team
contact address.
* d/control: Update Vcs-* fields with new Debian Python Team Salsa
layout.
-- Ondřej Nový <onovy@debian.org> Mon, 12 Oct 2020 13:35:05 +0200
pytest (4.6.11-1) unstable; urgency=medium
* New upstream release.
-- Ondřej Nový <onovy@debian.org> Thu, 11 Jun 2020 17:02:56 +0200
pytest (4.6.10-1) unstable; urgency=medium
* New upstream release.
* Drop PyPy support (Closes: #958848)
* Set Rules-Requires-Root: no.
* Bump Standards-Version to 4.5.0.
* Bump debhelper compat level to 13.
* d/tests/smoketest-3: Use supported not installed Python versions.
* Fix doc-base and add symlinks for docs (Closes: #959974).
-- Ondřej Nový <onovy@debian.org> Fri, 05 Jun 2020 13:03:24 +0200
pytest (4.6.9-3) unstable; urgency=medium
* debian/control
- decorate python3-twisted with nocheck, as it's only used by unittests
* Drop python2 support; Closes: #937558
-- Sandro Tosi <morph@debian.org> Tue, 14 Apr 2020 00:44:22 -0400
pytest (4.6.9-2) unstable; urgency=medium
* remove python-twisted from b-d, 7 additional tests are skipped in
test_unittest.py, but it allows to reduce the number ov reverse dependencies
of python-twisted
-- Sandro Tosi <morph@debian.org> Mon, 30 Mar 2020 02:09:47 -0400
pytest (4.6.9-1) unstable; urgency=medium
* New upstream release.
* d/copyright: Bump copyright years.
* python-pytest-doc: Prefer to recommend python3-pytest.
* Build-Depend on python2-doc instead of python-doc.
-- Ondřej Nový <onovy@debian.org> Wed, 08 Jan 2020 16:42:25 +0100
pytest (4.6.8-1) unstable; urgency=medium
* New upstream release.
-- Ondřej Nový <onovy@debian.org> Fri, 27 Dec 2019 18:02:28 +0100
pytest (4.6.7-1) unstable; urgency=medium
[ Ondřej Nový ]
* New upstream release
[ Stefano Rivera ]
* Skip the mock integration test under PyPy, there isn't a pypy-mock
package in Debian.
* Patch: Restore write access to test directories, in writeable tests..
-- Ondřej Nový <onovy@debian.org> Tue, 10 Dec 2019 13:30:06 +0100
pytest (4.6.6-1) unstable; urgency=medium
* New upstream release.
* Add Breaks of older:
- python{,3}-pytest-mock
* Bump Standards-Version to 4.4.1.
-- Ondřej Nový <onovy@debian.org> Sun, 20 Oct 2019 22:13:09 +0200
pytest (4.6.5-2) unstable; urgency=medium
* Add Breaks of older:
- python{,3}-pytest-cov
- python{,3}-pytest-xdist
- python{,3}-pytest-xvfb
- python{,3}-flaky
* Drop versioned depends and breaks older than oldstable.
* Remove python3-mock from B-D.
-- Ondřej Nový <onovy@debian.org> Mon, 12 Aug 2019 14:54:00 +0200
pytest (4.6.5-1) unstable; urgency=low
* New upstream release.
-- Ondřej Nový <onovy@debian.org> Thu, 08 Aug 2019 10:17:18 +0200
pytest (4.6.4-1) unstable; urgency=medium
* New upstream release
* d/watch: Limit to major version 4, because 5+ is Python 3 only
* d/patches/0006-tests-fix-test_raises_exception_looks_iterable.patch:
Drop, applied upstream
* d/patches: Rebased
* Fix B-D a D for new upstream release
* Disable some of Sphinx extensions which we don't have in Debian (yet)
* Use debhelper-compat instead of debian/compat.
* Bump debhelper compat level to 12.
* Bump standards version to 4.4.0 (no changes).
-- Ondřej Nový <onovy@debian.org> Thu, 01 Aug 2019 23:10:41 +0200
pytest (3.10.1-2) unstable; urgency=medium
* Fix test_raises_exception_looks_iterable test with newer Python 3.7
(Closes: #916944)
-- Ondřej Nový <onovy@debian.org> Fri, 21 Dec 2018 18:49:26 +0100
pytest (3.10.1-1) unstable; urgency=medium
* New upstream release (Closes: #914420)
-- Ondřej Nový <onovy@debian.org> Fri, 23 Nov 2018 18:59:56 +0100
pytest (3.9.3-2) unstable; urgency=medium
* Uploading to unstable
* Require newer version of {python,pypy}-pathlib2.
* Add {python,pypy}-pathlib2 into runtim depends.
-- Ondřej Nový <onovy@debian.org> Thu, 22 Nov 2018 09:14:51 +0100
pytest (3.9.3-1) experimental; urgency=medium
* New upstream release (Closes: #908181)
* Convert git repository from git-dpm to gbp layout
* d/p/0004-Fix-PyPy-SyntaxError-offset-in-tests.patch:
Drop, applied upstream
* Rebase patches
* Fix B-D/D for new upstream release
* Disable more tests - doesn't work with PyPy
* Use PYBUILD_TEST_ARGS{,_pypy} for test disabling
* Bump Standards-Version to 4.2.1 (no changes needed)
-- Ondřej Nový <onovy@debian.org> Wed, 07 Nov 2018 15:01:27 +0100
pytest (3.6.4-1) unstable; urgency=medium
* New upstream release
* Bump Standards-Version to 4.1.5 (no changes needed)
-- Ondřej Nový <onovy@debian.org> Tue, 31 Jul 2018 04:51:57 +0200
pytest (3.6.2-2) unstable; urgency=medium
* Uploading to unstable
-- Ondřej Nový <onovy@debian.org> Wed, 27 Jun 2018 10:06:43 +0200
pytest (3.6.2-1) experimental; urgency=medium
* New upstream release (Closes: #901568)
* Arrange B-D for new upstream release
* d/rules:
- pytest src is now in src/ subdirectory
- Skip testing/test_mark.py test
* d/patches/0005-Drop-sphinxcontrib_trio-extension.patch: Add patch
* Add upstream metadata
-- Ondřej Nový <onovy@debian.org> Wed, 20 Jun 2018 16:35:30 +0200
pytest (3.3.2-3) unstable; urgency=medium
* d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
* Fix PyPy SyntaxError offset in tests (Closes: #897557)
* d/control: Remove ancient X-Python-Version field
* d/control: Remove ancient X-Python3-Version field
* Bump Standards-Version to 4.1.4 (no changes needed)
-- Ondřej Nový <onovy@debian.org> Thu, 10 May 2018 12:35:04 +0200
pytest (3.3.2-2) unstable; urgency=medium
* Uploading to unstable
-- Ondřej Nový <onovy@debian.org> Wed, 07 Mar 2018 10:28:17 +0100
pytest (3.3.2-1) experimental; urgency=medium
* New upstream release (Closes: #887342)
* Add trailing tilde to pypy-hypothesis min version dependency
(Closes: #891145)
* d/control: Bump X-Python-Version to 2.7 and X-Python3-Version to 3.4
* Fix B-D and D for new upstream release
* Run wrap-and-sort -bast
* Move python{,3}-twisted back to B-D (Closes: #844919)
-- Ondřej Nový <onovy@debian.org> Tue, 27 Feb 2018 15:00:33 +0100
pytest (3.2.5-2) unstable; urgency=medium
* d/control:
- Set Vcs-* to salsa.debian.org
- Require fixed pypy-hypothesis (>= 3.44.1-2)
* d/rules: Enable testing/python/metafunc.py again
-- Ondřej Nový <onovy@debian.org> Fri, 16 Feb 2018 15:34:30 +0100
pytest (3.2.5-1) unstable; urgency=medium
* New upstream release
* Remove Simon Chopin from uploaders and add myself (Closes: #889772)
* Bump debhelper compat level to 11
* d/copyright
- Add myself for Debian part
- Use https in Format
* Update standards version to 4.1.3 (no changes needed)
* d/watch: Use https
* d/source/options: Ignore .egg_info
* d/clean: Don't clean .egg_info
* d/rules:
- Disable testing/test_terminal.py test (requires terminal)
- Disable testing/python/metafunc.py (requires hypothesis which is broken
in pypy)
* Move docs into /usr/share/doc/python-pytest
* Install README.rst into pypy-pytest package
* Don't run tests in nocheck profile
-- Ondřej Nový <onovy@debian.org> Wed, 07 Feb 2018 13:54:47 +0100
pytest (3.2.1-2) unstable; urgency=medium
* Team upload.
* debian/control:
- Remove myself from Uploaders.
- Bump all dependencies on python-py to 1.4.34 to avoid endless
recursions. (Closes: #873961)
- Bump Standards-Version.
- Use https for Homepage.
-- Sebastian Ramacher <sramacher@debian.org> Mon, 04 Sep 2017 12:13:29 +0200
pytest (3.2.1-1) unstable; urgency=medium
* New upstream release.
- Properly escape test names when setting PYTEST_CURRENT_TEST environment
variable. (Closes: #871994)
-- Sebastian Ramacher <sramacher@debian.org> Sun, 13 Aug 2017 17:34:34 +0200
pytest (3.2.0-1) unstable; urgency=medium
* New upstream release.
* debian/control: Bump Standards-Version.
* debian/{control,rules}: Build with python3-sphinx.
-- Sebastian Ramacher <sramacher@debian.org> Thu, 10 Aug 2017 20:07:28 +0200
pytest (3.1.3-1) unstable; urgency=medium
* Upload to unstable.
* New upstream release.
* debian/control:
- Add setuptool-scm to B-D.
- Bump Standards-Version.
-- Sebastian Ramacher <sramacher@debian.org> Thu, 13 Jul 2017 13:59:38 +0200
pytest (3.0.7-2) experimental; urgency=medium
* debian/rules: Remove obsolete mkdir.
* debian/control: Remove obsolete version constraints.
-- Sebastian Ramacher <sramacher@debian.org> Tue, 21 Mar 2017 21:37:33 +0100
pytest (3.0.7-1) experimental; urgency=medium
* New upstream release.
-- Sebastian Ramacher <sramacher@debian.org> Tue, 21 Mar 2017 21:15:44 +0100
pytest (3.0.6-1) unstable; urgency=medium
* New upstream release.
* debian/control: Fix B-C on python3-twisted.
-- Sebastian Ramacher <sramacher@debian.org> Thu, 26 Jan 2017 18:05:43 +0100
pytest (3.0.5-2) unstable; urgency=medium
* debian/*: Install pytest entrypoints since logilab-common removed them.
Also make the old py.test entrypoints symlinks to pytest.
* debian/{control,compat}: Bump debhelper compat to 10.
* debian/control: Use sphinxdoc:Built-Using for -doc package.
-- Sebastian Ramacher <sramacher@debian.org> Wed, 14 Dec 2016 20:43:52 +0100
pytest (3.0.5-1) unstable; urgency=medium
* New upstream release.
-- Sebastian Ramacher <sramacher@debian.org> Fri, 09 Dec 2016 17:50:42 +0100
pytest (3.0.4-1) unstable; urgency=medium
* New upstream release.
* debian/control: Move python{,3}-twisted-core to Build-Conflicts until
upstream issues #1989 is fixed. This is a temporary workaround for
#844919.
-- Sebastian Ramacher <sramacher@debian.org> Sat, 19 Nov 2016 10:59:59 +0100
pytest (3.0.3-1) unstable; urgency=medium
* New upstream release.
-- Sebastian Ramacher <sramacher@debian.org> Mon, 10 Oct 2016 20:07:18 +0200
pytest (3.0.2-1) unstable; urgency=medium
* New upstream release.
-- Sebastian Ramacher <sramacher@debian.org> Sat, 03 Sep 2016 11:11:27 +0200
pytest (3.0.1-2) unstable; urgency=medium
[ Julian Taylor ]
* Add pypy package (Closes: #797977)
[ Sebastian Ramacher ]
* Upload to unstable.
* debian/copyright: Fix copyright years and copyright information for
doc/en/_themes.
* debian/rules: Generate manpage for py.test-pypy.
-- Sebastian Ramacher <sramacher@debian.org> Tue, 30 Aug 2016 23:07:11 +0200
pytest (3.0.1-1) experimental; urgency=medium
* New upstream release.
- Fixes regression when using importorskip at module level. (Closes:
#835242)
- Fixes regression with parametrizing tests. (Closes: #835248)
-- Sebastian Ramacher <sramacher@debian.org> Thu, 25 Aug 2016 09:58:18 +0200
pytest (3.0.0-1) experimental; urgency=medium
* New upstream release.
* debian/patches/drop-entrypoints-logic.patch: Removed, included upstream.
* debian/python{,3}.*: Remove versioned entry points as they are no longer
provided upstream.
* debian/control:
- Add python{,3}-hypothesis to B-D.
- Annotate B-Ds with <!nocheck> where possible.
- Update debhelper and dpkg-dev B-D for build profiles support.
- Update Description.
- Bump X-Python3-Version.
* debian/rules:
- Update clean target.
- Update ignored tests.
* debian/NEWS: Document entrypoint changes.
-- Sebastian Ramacher <sramacher@debian.org> Sun, 21 Aug 2016 20:05:49 +0200
pytest (2.9.2-3) unstable; urgency=medium
* No change rebuild because
- w-b does not handle versioned Provides, and
- python-pytest-doc got removed by the auto-decrufter which thought the
binary package was removed.
-- Sebastian Ramacher <sramacher@debian.org> Mon, 18 Jul 2016 20:01:13 +0200
pytest (2.9.2-2) unstable; urgency=medium
* debian/patches/intersphinx.patch: Use local intersphinx mappings. (Closes:
#830566)
-- Sebastian Ramacher <sramacher@debian.org> Thu, 14 Jul 2016 23:06:09 +0200
pytest (2.9.2-1) unstable; urgency=medium
* New upstream release.
* debian/control: Bump Standards-Version.
* debian/{rules,clean}: Move some parts of the clean override.
-- Sebastian Ramacher <sramacher@debian.org> Thu, 02 Jun 2016 21:59:49 +0200
pytest (2.9.1-1) unstable; urgency=medium
* New upstream release.
* debian/rules:
- Do not enable verbose dh and pybuild output.
- Remove temporary directory for tests.
* debian/copyright: Update copyright years and add myself.
-- Sebastian Ramacher <sramacher@debian.org> Mon, 21 Mar 2016 14:30:21 +0100
pytest (2.8.7-4) unstable; urgency=medium
* debian/control:
- Add myself to Uploaders.
- Bump Standards-Version to 3.9.7.
- Update Vcs-Git.
* Better handling of py.test-X.Y. (Closes: #814834)
- debian/patches/drop-entrypoints-logic.patch: Upstream patch to no longer
generate py.test-X.Y entry points.
- debian/python-pytest.links: Provide py.test-2.7 and manpage via symlink
until we can drop them.
- debian/rules: No longer remove unwanted artifacts, as they are no longer
produced.
* debian/rules: Build man and html in one call.
* debian/tests/control: Reduce dependencies of tests to what is actually
needed.
-- Sebastian Ramacher <sramacher@debian.org> Mon, 15 Feb 2016 22:08:06 +0100
pytest (2.8.7-3) unstable; urgency=medium
* Team upload.
* Revert changes from 2.8.7-2 that included /usr/bin/pytest-3.X in the
package (Closes: #814622)
-- Sebastian Ramacher <sramacher@debian.org> Sun, 14 Feb 2016 16:36:55 +0100
pytest (2.8.7-2) unstable; urgency=medium
* Team upload.
* d/rules: Don't trim artifacts.
-- Barry Warsaw <barry@debian.org> Thu, 11 Feb 2016 14:38:16 -0500
pytest (2.8.7-1) unstable; urgency=medium
* Team upload.
[ Corey Bryant ]
* d/control: Drop tox from build-depends.
[ Barry Warsaw ]
* New upstream release.
* d/tests:
- control: Add a Depends to pick up all supported Python 3 versions.
- smoketest-{2,3}: Run the smoke tests against all installed versions
of Python, instead of the supported versions.
-- Barry Warsaw <barry@debian.org> Mon, 08 Feb 2016 17:22:46 -0500
pytest (2.8.5-2) unstable; urgency=medium
* Team upload.
* debian/rules:
- Reduce duplication between python-pytest and python-pytest-doc.
- Build documentation in *build* step and not in install step.
* debian/control: Remove XS-Testsuite, no longer needed.
* Revert parts of c6eb0d1da9bdf2a0cfb40d69711e8a88e86d4657 and bring back
rtinstall, rtremove, postinstall and prerm for python3-pytest. (Closes:
#808763)
Until we decide that py.test-X.Y scripts are not desired, this method
actually generates them correctly and does not require a sourceful upload
whenever the set of supported Python 3 version changes.
-- Sebastian Ramacher <sramacher@debian.org> Tue, 19 Jan 2016 15:59:35 +0100
pytest (2.8.5-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* d/control: Update the Vcs-* fields for git.
* d/patches:
- local-intersphinx: Removed; no longer necessary.
- remove-herokuapp-images: Removed; no longer necessary.
- remove_google_js: Updated.
* d/rules:
- Convert to --buildsystem=pybuild
- override_dh_compress, override_dh_install, override_dh_auto_clean,
override_dh_clean: Removed; let pybuild do it all for us.
- override_dh_auto_test: Updated.
- override_dh_installdocs: Added.
- override_dh_auto_install: Added for tweaking the /usr/bin scripts
shebang lines.
* d/py.test.template: Removed.
* d/*.install, *.postinst, *.prerm, *.rtinstall, *.rtremove: Removed.
* d/tests: Since the unittests run during package build, we only need a
couple of smoketests in the DEP-8 tests, just to ensure that pytest
can be invoked on a simple Python test file.
* wrap-and-sort
-- Barry Warsaw <barry@debian.org> Thu, 17 Dec 2015 19:41:09 -0500
pytest (2.7.3-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/patches/issue844-py35-compat: Removed, applied upstream.
-- Barry Warsaw <barry@debian.org> Tue, 15 Sep 2015 17:11:36 -0400
pytest (2.7.2-2) unstable; urgency=medium
* Team upload.
* debian/patches/issue744-py35-compat: Upstream patch to fix Python 3.5
compatibility by handling the change in the ast module API.
-- Barry Warsaw <barry@debian.org> Fri, 17 Jul 2015 11:38:21 -0400
pytest (2.7.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control:
- Bump version requirements for python(,3)-py to >= 1.4.29.
- Drop obsolete Breaks and Replaces.
- Add dh-python to Build-Depends.
- Bump version requirements for debhelper to >= 9.
* debian/compat: Bump to 9.
-- Sebastian Ramacher <sramacher@debian.org> Sun, 05 Jul 2015 17:45:55 +0200
pytest (2.7.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/patches/remove-herokuapp-images: Refreshed.
* debian/watch: Use PyPI redirector.
* debian/copyright: Remove unused paragraph.
-- Sebastian Ramacher <sramacher@debian.org> Thu, 14 May 2015 16:22:12 +0200
pytest (2.6.3-2) unstable; urgency=medium
* Team upload.
* debian/control: Bump version requirements for python(3)-py to >= 1.4.25.
(Closes: #765844)
-- Sebastian Ramacher <sramacher@debian.org> Tue, 21 Oct 2014 06:18:11 +0200
pytest (2.6.3-1) unstable; urgency=medium
* New upstream release
* Update copyright years
* Correct the license information on the documentation themes
* Refresh remove-herokuapp-images patch.
-- Simon Chopin <chopin.simon@gmail.com> Mon, 13 Oct 2014 12:45:47 +0200
pytest (2.6.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control:
- Bump version requirements for python(3)-py to >= 1.4.22.
* Use local copy of Python's objects.inv. (Closes: #739406)
- debian/control: Add python-doc to Build-Depends.
- debian/patches/local-intersphinx: Add patch to python-doc's copy to
objects.inv.
* debian/copyright: Update copyright years.
* debian/patches/remove-herokuapp-images: Remove images fetched from
herokuapps.com.
-- Sebastian Ramacher <sramacher@debian.org> Sat, 26 Jul 2014 10:58:07 +0200
pytest (2.5.2-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* d/patches/remove_google_js: Refreshed.
-- Barry Warsaw <barry@debian.org> Mon, 28 Apr 2014 18:10:47 -0400
pytest (2.5.1-1) unstable; urgency=low
* Team upload.
* New upstream release.
* d/control: Update python-py and python3-py dependency versions.
Closes: #731299
* d/patches/remove_google_js: Refreshed.
-- Barry Warsaw <barry@debian.org> Thu, 12 Dec 2013 10:27:41 -0500
pytest (2.4.2-1) unstable; urgency=low
[ Martin Pitt ]
* debian/tests/control: Drop trailing comma from test dependencies, which
causes autopkgtest to fail.
[ Simon Chopin ]
* New upstream release (Closes: #728526)
+ Drop the reset-tmpdir-mode patch as the issue has been adressed upstream
* Bump the policy version to 3.9.5 (no changes needed)
* Bump copyright years and remove the paragraph for distribute_setup.py
-- Simon Chopin <chopin.simon@gmail.com> Sun, 24 Nov 2013 22:47:17 +0100
pytest (2.3.5-1) unstable; urgency=low
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
[ Simon Chopin ]
* New upstream version (Closes: #707151)
* B-D on debhelper 8.1 to conform to Policy 3.9.4
* Add DEP-8 tests (Closes: #702121)
* Patch the tests to restore the permissions of the tmpdir used in tests
[ Sebastian Ramacher ]
* Upload to unstable.
-- Simon Chopin <chopin.simon@gmail.com> Mon, 20 May 2013 20:31:42 +0200
pytest (2.3.4-1~exp2) experimental; urgency=low
* Fix the version detection regexp to be less inclusive (Closes: #703351)
* Adjust the shebang replacement regexp in postinst and rtinstall.
Thanks to Roderich Schupp.
* Remove the doc build directory in the clean target (Closes: #702117)
-- Simon Chopin <chopin.simon@gmail.com> Fri, 22 Mar 2013 14:24:48 +0100
pytest (2.3.4-1~exp1) experimental; urgency=low
* Upload new upstream release to experimental (Closes: #699312)
+ Update the patch paths to build only the English documentation
* Fix the permissions for the py.test-3 executable.
* Up the dependency on python-py to 1.4.11
* Add python(3)-nose, python-pexpect, python(3)-mock (>= 1.0.1)
and python-twisted-core as Build-Depends to skip less tests.
* Suggests python-mock (>= 1.0.1) in python-pytest
* Bump Standards-Version to 3.9.4, no change needed.
* Update copyright year.
-- Simon Chopin <chopin.simon@gmail.com> Sat, 02 Mar 2013 17:13:20 +0100
pytest (2.2.4-2) unstable; urgency=low
* Use rt{install, remove} mechanisms from the Python package to replace the
wrapper system. /usr/bin/py.test-X.Y will now be available only if the
corresponding python package is installed. Thanks to Jakub Wilk.
-- Simon Chopin <chopin.simon@gmail.com> Sun, 24 Jun 2012 21:53:21 +0200
pytest (2.2.4-1) unstable; urgency=low
* New upstream release
* Drop patch fix-grammar-manpage (included upstream)
* Bump the dependency to python[3]-py to >= 1.4.8
-- Simon Chopin <chopin.simon@gmail.com> Sun, 03 Jun 2012 03:04:02 +0200
pytest (2.2.3-3) unstable; urgency=low
* Fix the version detection in the wrapper (Closes: #668691)
-- Simon Chopin <chopin.simon@gmail.com> Tue, 17 Apr 2012 12:56:18 +0200
pytest (2.2.3-2) unstable; urgency=low
* Fix the shell wrapper (Closes: #668519)
* Use the wrapper for py.test and py3-test to simplify d/rules
* Enable test suite
+ Uncomment the override_dh_auto_test target
* Build-Conflicts on old versions of python-pytest-xdist (<< 1.5)
-- Simon Chopin <chopin.simon@gmail.com> Fri, 13 Apr 2012 20:34:00 +0200
pytest (2.2.3-1) unstable; urgency=low
* Initial release (Closes: #664071)
* Disable the test suite for the bootstrap.
-- Simon Chopin <chopin.simon@gmail.com> Wed, 11 Apr 2012 15:09:52 +0200
|