summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* PyPy 3.7 doesn't act exactly like CPython 3.7nedbat/pythonsNed Batchelder2020-10-101-1/+1
|
* Python 3.10Ned Batchelder2020-10-101-1/+5
|
* If a plugin is disabled, don't try to record its file tracers. #1011Ned Batchelder2020-09-131-0/+32
|
* Fix a missed exception handling for bad pluginsNed Batchelder2020-09-131-0/+22
|
* ambigious -> ambiguousNed Batchelder2020-09-125-10/+10
|
* Docs and cleanup for source_pkgsNed Batchelder2020-09-124-7/+6
|
* Create Way to force package even if filepath exists (#1026)Thomas Grainger2020-09-125-0/+24
| | | Fixes: #268
* replace confusing comment with assertion (#1028)Thomas Grainger2020-09-121-3/+12
|
* Explain a mysteryNed Batchelder2020-09-021-0/+4
|
* More bitbucket->github urlsNed Batchelder2020-08-1813-54/+53
|
* Displaying timezone information in HTML report (#960)Xie Yanbo2020-07-2339-38/+44
| | | | | | | | * Displaying timezone information in HTML report * A helpber to format datetime with local timezone * No backward compatibility with older python versions
* CmdLineStdoutTest::test_cmd_help: test for at least 20 lines (#1013)latricewilgus2020-07-191-1/+1
| | | | | | | | | The number of lines in the help output of a command depends on the terminal size. The smaller the more line breaks. The minimum number of lines for the current help message is 23. Currently we are checking for at least 30 lines, yielding to failures on large terminals. Reduce the number (currently 30) to 20 to have some leeway for the future.
* Fix dark mode for context listing. #1009Ned Batchelder2020-07-091-2/+12
|
* A known failure has been fixedNed Batchelder2020-07-051-1/+1
|
* Back to monospaced for the index pageNed Batchelder2020-07-051-1/+1
|
* Switch to python-based sass compilerNed Batchelder2020-07-051-1/+111
|
* Report descending sort option (#1005)Jerin Peter George2020-07-031-0/+6
| | | | | | | | | | | | | | | * added descending sort option in coverage report * commandline option for report sort added * Fix tests for pull #1005 * conditional statements improved * sort option help updated with choices * commandline test for sort added Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
* Fix broken sorting tests. Good catch, Jerin Peter GeorgeNed Batchelder2020-07-031-10/+11
|
* --skip-empty now applies to the XML report also. #976nedbat/bug976Ned Batchelder2020-06-302-1/+8
|
* Simplify testing of --no-skip-covered, and add docsNed Batchelder2020-06-292-30/+10
|
* More HTML tweaksNed Batchelder2020-06-291-4/+3
| | | | | | | | - Let the left and right cells have padding so the hover bar looks good. - Adjust the table left margin so the contents still line up with the header. - Fix the up/down arrows to be correct for the sorting order they indicate.
* Merge pull request #932 from asottile/no_skip_coveredNed Batchelder2020-06-291-0/+30
|\ | | | | Add --no-skip-covered to allow negation of --skip-covered
| * Add --no-skip-covered to allow negation of --skip-coveredAnthony Sottile2020-02-141-0/+30
| |
* | Provide more information in the fail-under messageNed Batchelder2020-06-281-2/+8
| |
* | Merge pull request #977 from navyad/navyad/fail-underNed Batchelder2020-06-281-2/+2
|\ \ | | | | | | message for fail-under
| * | message for fail-undernavyad2020-04-191-2/+2
| | |
* | | A few further style tweaks to the HTML reportNed Batchelder2020-06-281-122/+11
| | | | | | | | | | | | | | | | | | - File names are not monospaced - Button styling make on/off a little more pronounced - Fix the alignment of the header on the index page
* | | Merge pull request #931 from vsalvino/darkmodeNed Batchelder2020-06-2825-116/+275
|\ \ \ | | | | | | | | Add dark mode, and other design changes for the HTML report.
| * | | Fix testsVince Salvino2020-06-2424-74/+74
| | | |
| * | | Add dark mode to HTML output; improve accessibilityVince Salvino2020-02-111-42/+201
| | |/ | |/|
* | | Read the config file contents as bytes, it's just for debugging anyway. #990Ned Batchelder2020-05-231-4/+10
| | |
* | | Update pylintNed Batchelder2020-05-191-1/+1
| | |
* | | Make the bare help message a bit more helpfulNed Batchelder2020-05-171-1/+1
| | |
* | | Merge branch 'pr/982'Ned Batchelder2020-05-121-3/+13
|\ \ \
| * | | Finish up --precisionNed Batchelder2020-05-121-3/+13
| | |/ | |/|
* | | tests/gold/html/Makefile: support more shells (#984)Roland Illig2020-05-101-1/+1
|/ / | | | | | | | | | | | | | | | | * tests/gold/html/Makefile: support more shells Not all shells support the `[[` keywords. Among them are many `/bin/sh`. * Update tests/gold/html/Makefile Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
* | New JSON info should be reported on individual files also.Ned Batchelder2020-04-111-2/+4
| |
* | Merge pull request #966 from SZVector/json_dump_all_attributesNed Batchelder2020-04-111-1/+3
|\ \ | | | | | | Extending jsonreport.py to also include all branch attributes
| * | Extending jsonreport.py to also include all branch attributesSalvatore Zagaria2020-04-071-1/+3
| | | | | | | | | | | | Signed-off-by: Salvatore Zagaria <salvatore.zagaria@vector.com>
* | | Beef up the test for get_option(paths)Ned Batchelder2020-04-111-1/+14
| | |
* | | Allow plugins to alter the paths configBernat Gabor2020-04-031-0/+12
|/ / | | | | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* | handle decorators for AsyncFunctionDefs. Closes #964Kjell Braden2020-03-241-0/+17
| |
* | relative_files makes XML store relative paths. #948.Ned Batchelder2020-03-151-0/+13
| |
* | sysconfig has been available since 2.7Ned Batchelder2020-02-291-2/+2
|/
* Remove a temporary xfail for 3.9a2Ned Batchelder2020-01-251-8/+1
|
* Better xfail mechanismNed Batchelder2020-01-184-25/+24
|
* "coverage debug premain"Ned Batchelder2020-01-111-1/+1
|
* A test of running coverage when it has been zipped. #862Ned Batchelder2020-01-111-1/+12
|
* A test that reproduces #862Ned Batchelder2020-01-101-0/+18
|
* bpo39166 is fixedNed Batchelder2020-01-101-1/+1
|