summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Test excluded lines in the html reportNed Batchelder2016-11-303-4/+18
| | | |
* | | | A test of status.json having the wrong formatNed Batchelder2016-11-291-0/+22
| | | |
* | | | status.json file is more compactNed Batchelder2016-11-291-1/+1
| |/ / |/| |
* | | More-accurate pragmasNed Batchelder2016-11-293-4/+5
| | |
* | | Cover a few edge cases in phystokens.pyNed Batchelder2016-11-281-12/+27
| | |
* | | .rst max line is 79Ned Batchelder2016-11-282-2/+5
| | |
* | | Async protocol changed in 3.5.2. Remove a deprecation warningNed Batchelder2016-11-271-1/+1
| | |
* | | Avoid flags in regexes we combineNed Batchelder2016-11-272-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These regexes get piped together with other regexes, and flags not at the beginning of the regex raise DeprecationWarnings. Also, I'm not sure what the flag will do when combined with the other regexes. Also also, do people really use upper-case pragmas? --HG-- extra : amend_source : 0123e985b9ddba0a7ef18276816a05bdb3f8d170
* | | Nope, that wasn't itNed Batchelder2016-11-261-1/+1
| | |
* | | Try no xdist to see if appveyor will be happyNed Batchelder2016-11-261-1/+1
| | |
* | | Fix two problems with xdist'ed testsNed Batchelder2016-11-262-2/+5
| | |
* | | Latest versions of everythingNed Batchelder2016-11-265-10/+10
| | |
* | | Updates for pytestNed Batchelder2016-11-261-44/+46
| | |
* | | Enable pytest warnings, and fix/silence a fewNed Batchelder2016-11-264-3/+7
| | |
* | | Change nose example to pytest example. #521Ned Batchelder2016-11-261-4/+5
| | |
* | | Use xdist to run tests fasterNed Batchelder2016-11-232-1/+2
| | |
* | | Avoid yielding test cases so pytest is happy.Ned Batchelder2016-11-231-15/+17
| | |
* | | Use a 2/3 name for unicodeNed Batchelder2016-11-232-3/+4
| | |
* | | Make this runnable on Python 3Ned Batchelder2016-11-231-2/+2
| | |
* | | Make this usable in python 3Ned Batchelder2016-11-231-4/+4
| | |
* | | Conditionalize the ast_dump codeNed Batchelder2016-11-221-55/+60
| | |
* | | Install pytest in the main venvNed Batchelder2016-11-222-4/+3
| | |
* | | Add a test for tokenizing code without a final newlineNed Batchelder2016-11-221-18/+20
| | |
* | | Was using the wrong pragmaNed Batchelder2016-11-221-1/+1
| | |
* | | Try to describe what PyPy we test withNed Batchelder2016-11-213-8/+10
| | |
* | | Didn't know why we needed it, and now it seems like we don't.Ned Batchelder2016-11-211-5/+2
| | |
* | | Looks better lowercaseNed Batchelder2016-11-211-1/+1
| | |
* | | More badge funNed Batchelder2016-11-211-0/+6
| | |
* | | Make igor usable without pytestNed Batchelder2016-11-211-2/+3
| | |
* | | Keep 2.6 workingNed Batchelder2016-11-201-1/+1
| | |
* | | Keep lines trimmedNed Batchelder2016-11-201-1/+2
| | |
* | | No more nose, use pytest as test runnerNed Batchelder2016-11-207-34/+25
| | |
* | | Test against latest pypy2 and pypy3 only. No more 3.2Ned Batchelder2016-11-201-16/+6
| | |
* | | Use my fix for pytestNed Batchelder2016-11-202-3/+3
| | |
* | | Rename this so it doesn't have "test" in the file name.Ned Batchelder2016-11-201-0/+0
| | | | | | | | | | | | | | | --HG-- rename : perf/stress_test.py => perf/perf_measure.py
* | | Fix the docstringNed Batchelder2016-11-201-2/+3
| | |
* | | Move the config logic out of the Coverage constructorNed Batchelder2016-11-202-36/+60
| | |
* | | Make sure that an uninterested setup.cfg doesn't prevent tox.ini from workingNed Batchelder2016-11-192-4/+30
| | |
* | | Tweak test helper names and docstringsNed Batchelder2016-11-191-17/+16
| | |
* | | Update the docs about reading tox.iniNed Batchelder2016-11-192-6/+7
| | |
* | | Put this test back, it was failing when trying to check both setup.cfg and ↵Ned Batchelder2016-11-191-9/+7
| | | | | | | | | | | | tox.ini
* | | Credit where credit is due: Thanks, Stephen Finucane.Ned Batchelder2016-11-192-4/+6
| | |
* | | Clean up line wraps and leftover printsNed Batchelder2016-11-192-13/+5
| | |
* | | Merged in stephenfin/coverage.py/issue-519 (pull request #92)Ned Batchelder2016-11-193-26/+78
|\ \ \ | | | | | | | | | | | | Read options from tox.ini
| * | | Read options from tox.iniStephen Finucane2016-11-183-26/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If coveragerc does not exist, setup.cfg does not exist or does not contain any coverage-related metadata, and no custom config file is provided, fall back to tox.ini. The syntax of tox.ini files is the same as that expected of setup.cfg files, namely: [coverage:{section}] Fixes: #519 --HG-- branch : issue-519
* | | | An editorconfig file to help with styleNed Batchelder2016-11-191-0/+32
| | | |
* | | | This file was a performance test of sortsNed Batchelder2016-11-191-0/+0
| | | | | | | | | | | | | | | | | | | | --HG-- rename : lab/bug397.py => perf/bug397.py
* | | | Every file should have the license statementNed Batchelder2016-11-191-0/+3
| | | |
* | | | Keep howto up to dateNed Batchelder2016-11-181-7/+3
|/ / /
* | | Try a new badge: commits since last buildNed Batchelder2016-11-171-1/+2
| | |