summaryrefslogtreecommitdiff
path: root/tests/test_concurrency.py
Commit message (Collapse)AuthorAgeFilesLines
* feat: xml and json say what they are doing, and -q quiets everything. #1254nedbat/dashqNed Batchelder2021-10-261-7/+2
|
* style: prefer explicit string concatenationNed Batchelder2021-10-101-4/+2
|
* test: fix flaky multiprocessing testsNed Batchelder2021-09-291-1/+1
| | | | | Tests are failing because we expect to see three different pids, but only get two. Is that because the work is being completed too quickly?
* feat: `coverage combine` now prints messages naming the files being ↵Ned Batchelder2021-08-051-12/+18
| | | | combined. #1105 (#1208)
* refactor: remove a few more version checksNed Batchelder2021-05-021-12/+2
|
* refactor: pyupgrade --py36-plus tests/**.pyNed Batchelder2021-05-021-7/+7
|
* refactor: move the remaining backward.py code, no more backward.pyNed Batchelder2021-05-011-1/+1
|
* refactor: remove code explicitly choosing between py2 and py3Ned Batchelder2021-05-011-7/+1
|
* Use current_thread instead of currentThread that was deprecated in Python 3.10Karthikeyan Singaravelan2021-04-171-1/+1
|
* refactor: convert all skipping to pytest skipsNed Batchelder2021-02-071-5/+2
|
* style: correct placement of auto-added pytest importsNed Batchelder2021-01-311-1/+1
|
* refactor: unittest2pytest -w testsNed Batchelder2021-01-311-15/+16
| | | | One step of moving to pure pytest tests.
* Always output TOTAL line.Judson Neer2021-01-061-2/+2
|
* More bitbucket->github urlsNed Batchelder2020-08-181-2/+1
|
* Use abspath to rc file so that chdir doesn't bork us. #890Ned Batchelder2019-12-231-0/+19
|
* Catch and display expceptions during multiprocessing bootstrap.Ned Batchelder2019-12-231-0/+17
|
* Combine test helpers: remove_filesNed Batchelder2019-12-171-6/+1
|
* run --append --concurrency=multiprocessing didn't use a suffix for the main ↵Ned Batchelder2019-12-171-4/+24
| | | | process. #880
* Make this test more resilientNed Batchelder2019-11-261-2/+1
|
* No need for format indexes (mostly)Ned Batchelder2019-09-011-3/+3
|
* One more line to exclude from coverage measurementNed Batchelder2019-04-301-1/+1
|
* Fix a few capitalizationsNed Batchelder2019-04-281-2/+2
|
* Check for skipping tests before super.setUpNed Batchelder2019-04-211-1/+1
|
* Python 3.8 will optimize away "while True:"Ned Batchelder2018-11-111-1/+1
|
* Do we need more than 10 tries?Ned Batchelder2018-10-151-1/+1
|
* Move line_counts out of the data classesNed Batchelder2018-08-101-1/+2
|
* Make file operations implicit on constructed filenameNed Batchelder2018-07-231-2/+2
|
* Exclude site-packages so vendored code doesn't pollute test resultsNed Batchelder2018-06-281-0/+1
|
* Update NOTICE link to GitHub.Ned Batchelder2018-06-241-1/+1
|
* More pragmas to fine-tune coverage of test codeNed Batchelder2018-02-221-11/+11
|
* Fix english, and give a test a name that isn't a prefix of other namesNed Batchelder2018-02-191-3/+3
|
* Remove two unused namesNed Batchelder2018-01-281-2/+2
|
* Commented-out debugging of pytracerNed Batchelder2017-11-241-2/+1
|
* DesperationNed Batchelder2017-11-041-1/+1
|
* A little cleanup for #581Ned Batchelder2017-10-211-7/+12
|
* Merged in ogrisel/coverage.py/fix-thread-safety (pull request #127)Ned Batchelder2017-10-211-0/+95
|\ | | | | | | FIX thread-safe Collector.save_data()
| * FIX Typo in test_coverage_stop_in_threadsOlivier Grisel2017-08-101-1/+1
| | | | | | | | | | --HG-- branch : fix-thread-safety
| * FIX thread-safe Collector.save_data()Olivier Grisel2017-08-101-0/+95
| | | | | | | | | | --HG-- branch : fix-thread-safety
* | Flaky tests are really flakyNed Batchelder2017-10-121-1/+1
|/
* Sometimes we match against files, sometimes directories.Ned Batchelder2017-02-211-0/+1
| | | | Also, skip our own test code when running tests.
* No test failures on JythonNed Batchelder2017-01-181-0/+3
| | | | One or two of these are questionable accommodations, but there are no failures.
* Use @flaky to prevent occasional multiprocessing failuresNed Batchelder2017-01-171-0/+3
|
* Reporting doesn't work on Jython, so don't run reporting tests there.Ned Batchelder2017-01-141-2/+2
| | | | | --HG-- extra : amend_source : 144fd0ffb49fdef1139ae3f0085831ece14de43f
* Jython has no multiprocessing moduleNed Batchelder2017-01-131-2/+14
|
* Spelling fixesVille Skyttä2016-07-311-1/+1
| | | | | --HG-- branch : spelling
* Multiprocessing needs to communicate the rcfile down to the subprocessesNed Batchelder2016-07-131-4/+40
|
* A little more clean-up on the concurrency testsNed Batchelder2016-07-041-11/+13
|
* Let the concurrency option be multi-valued. #484Ned Batchelder2016-07-041-27/+65
|
* Refactor concurrency tests to make the pieces more composableNed Batchelder2016-07-031-119/+196
| | | | | --HG-- extra : amend_source : df40db50416bb97691509bf7607aba6ed2b7b205
* Make multiprocessing support work with spawned processes, which is what ↵Ned Batchelder2016-01-101-9/+21
| | | | Windows uses.