pytest-xdist 1.4-1.1 source package in Ubuntu

Changelog

pytest-xdist (1.4-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Rebuild to add Python 2.7 support
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  09 May 2011 11:54:12 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Oneiric
Original maintainer:
Adam Schmalhofer
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
pytest-xdist_1.4.orig.tar.gz 30.6 KiB 7c5498e252965bf30b2868ee93464d1c057d668b67729139ea452453c8db3957
pytest-xdist_1.4-1.1.debian.tar.gz 2.7 KiB 57b4c4840a598685cf2fe6933e0b58a72cd9fdfd5ae2f5875ade1c1557002ae8
pytest-xdist_1.4-1.1.dsc 1.7 KiB 4ab0e8b3862f12870494bc234f920e37bc1a78a2827aa9df212a018e0250fc70

Available diffs

View changes file

Binary packages built by this source

python-pytest-xdist: xdist plugin for py.test

 The pytest-xdist plugin extends py.test with some unique test execution modes:
 .
  * Looponfail:
      Run your tests repeatedly in a subprocess. After each run py.test waits
      until a file in your project changes and then re-runs the previously
      failing tests. This is repeated until all tests pass after which again a
      full run is performed.
  * Load-balancing:
      if you have multiple CPUs or hosts you can use those for a combined test
      run. This allows to speed up development or to use special resources of
      remote machines.
  * Multi-Platform coverage:
      you can specify different Python interpreters or different platforms and
      run tests in parallel on all of them.
 .
 Before running tests remotely, py.test efficiently synchronizes your program
 source code to the remote place. All test results are reported back and
 displayed to your local test session. You may specify different Python
 versions and interpreters.