Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | style: remove needless trailing commas | Ned Batchelder | 2023-01-26 | 1 | -1/+1 |
| | |||||
* | mypy: test_parser.py test_phystokens.py test_process.py test_report.py ↵ | Ned Batchelder | 2023-01-07 | 1 | -17/+17 |
| | | | | test_results.py test_setup.py | ||||
* | style: fix spelling | Ned Batchelder | 2022-11-28 | 1 | -1/+1 |
| | | | | un-executed, white space, time stamp. | ||||
* | refactor: no need for special handling of compiling unicode source | Ned Batchelder | 2022-11-06 | 1 | -114/+1 |
| | | | | This was a holdover from Python 2 days. | ||||
* | refactor(test): use xfail for tests that fail on specific versions of Python | Ned Batchelder | 2022-01-19 | 1 | -2/+0 |
| | |||||
* | style: convert more string formatting to f-strings | Ned Batchelder | 2021-11-11 | 1 | -2/+2 |
| | |||||
* | test: fix the trailing-space test, and suppress warnings about \<space> | Ned Batchelder | 2021-10-30 | 1 | -10/+13 |
| | |||||
* | refactor(test): make re_lines (et al) look like re.search | Ned Batchelder | 2021-10-28 | 1 | -3/+2 |
| | | | | and also replace some calls with just-plain re.search. | ||||
* | fix(debug): ast_dump failed on a few things | Ned Batchelder | 2021-10-27 | 1 | -0/+6 |
| | |||||
* | feat: soft keywords are shown in bold in the HTML report | Ned Batchelder | 2021-06-06 | 1 | -0/+36 |
| | | | | | | | | The match and case soft keywords are shown in bold when they are keywords, and not when they are not. The underscore soft keyword is ignored, because it is harder to get right, and because it doesn't look that much different in bold anyway. | ||||
* | refactor: remove a few more version checks | Ned Batchelder | 2021-05-02 | 1 | -1/+1 |
| | |||||
* | refactor: pyupgrade --py36-plus tests/**.py | Ned Batchelder | 2021-05-02 | 1 | -10/+10 |
| | |||||
* | refactor: remove code explicitly choosing between py2 and py3 | Ned Batchelder | 2021-05-01 | 1 | -4/+1 |
| | |||||
* | refactor: convert all skipping to pytest skips | Ned Batchelder | 2021-02-07 | 1 | -4/+2 |
| | |||||
* | style: fix long lines and avoid backslashesnedbat/unittest2pytest | Ned Batchelder | 2021-01-31 | 1 | -6/+2 |
| | |||||
* | style: correct placement of auto-added pytest imports | Ned Batchelder | 2021-01-31 | 1 | -1/+2 |
| | |||||
* | refactor: unittest2pytest -w tests | Ned Batchelder | 2021-01-31 | 1 | -26/+23 |
| | | | | One step of moving to pure pytest tests. | ||||
* | Update pylint | Ned Batchelder | 2020-05-19 | 1 | -1/+1 |
| | |||||
* | Adjust other env.PYPY tests to the latest way | Ned Batchelder | 2019-12-31 | 1 | -1/+1 |
| | |||||
* | Fix unusual backslash token issue. #822 | Ned Batchelder | 2019-08-10 | 1 | -0/+10 |
| | |||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 |
| | |||||
* | Refactor common test infrastructure for fiddling sys.path and finding files | Ned Batchelder | 2017-05-04 | 1 | -7/+4 |
| | |||||
* | Describe and relabel a test that has nothing to do with fail-under. | Ned Batchelder | 2017-03-04 | 1 | -2/+6 |
| | |||||
* | Fix some coverage pragmas | Ned Batchelder | 2017-02-07 | 1 | -1/+1 |
| | |||||
* | Get rid of some unused code paths | Ned Batchelder | 2017-01-20 | 1 | -1/+1 |
| | |||||
* | Cover a few edge cases in phystokens.py | Ned Batchelder | 2016-11-28 | 1 | -12/+27 |
| | |||||
* | Add a test for tokenizing code without a final newline | Ned Batchelder | 2016-11-22 | 1 | -18/+20 |
| | |||||
* | A fix for coding declarations, bug #529 | Ned Batchelder | 2016-11-05 | 1 | -0/+58 |
| | |||||
* | Use standard skipTest, which unittest-mixins will override. | Ned Batchelder | 2016-06-12 | 1 | -1/+1 |
| | |||||
* | Fix a string that was confusing vim | Ned Batchelder | 2016-01-09 | 1 | -1/+3 |
| | |||||
* | Add a missing docstring | Ned Batchelder | 2015-12-24 | 1 | -0/+1 |
| | |||||
* | Finish up Max Linke's fix for double encoding declarations. Fixes #453 | Ned Batchelder | 2015-12-24 | 1 | -13/+21 |
| | |||||
* | Add a failing test of double coding declarations, for #453 | Ned Batchelder | 2015-12-24 | 1 | -2/+9 |
| | |||||
* | Another edge case of encoding detection. #443 | Ned Batchelder | 2015-11-14 | 1 | -5/+13 |
| | |||||
* | Do a better job decoding source files. #431 | Ned Batchelder | 2015-10-16 | 1 | -1/+11 |
| | |||||
* | Fix a few more occurrences of 'Coverage' to 'coverage.py' | Ned Batchelder | 2015-07-27 | 1 | -1/+1 |
| | |||||
* | Add license mention to the top of all files. #313. | Ned Batchelder | 2015-07-24 | 1 | -1/+4 |
| | |||||
* | Add more contracts | Ned Batchelder | 2015-06-16 | 1 | -5/+4 |
| | |||||
* | All Python source is Unicode internally. | Ned Batchelder | 2015-05-17 | 1 | -9/+32 |
| | | | | | Unfortunately, this meant hacking around a silly Python 2 restriction (can't compile a Unicode string containing an encoding declaration). | ||||
* | Fully embrace SkipTest with our own method. | Ned Batchelder | 2015-02-07 | 1 | -3/+1 |
| | | | | | Also, no test is conditionally defined. They call self.skip if they should be skippped. | ||||
* | Make some test setup more uniform | Ned Batchelder | 2015-01-18 | 1 | -2/+2 |
| | |||||
* | Collect all the nudgy environment checks into coverage.env | Ned Batchelder | 2015-01-18 | 1 | -8/+8 |
| | |||||
* | Make source_encoding stricter about its arguments, and test it everywhere | Ned Batchelder | 2014-12-28 | 1 | -48/+61 |
| | |||||
* | Source is always Unicode in HTML code. More refactoring to come. | Ned Batchelder | 2014-12-12 | 1 | -0/+2 |
| | |||||
* | Try out pylint spelling. Kinda noisy, but fixed some stuff. | Ned Batchelder | 2014-11-27 | 1 | -1/+1 |
| | |||||
* | Use with-open everywhere | Ned Batchelder | 2014-10-26 | 1 | -1/+3 |
| | |||||
* | Fix non-comment encoding detection. | Anthony Sottile | 2014-06-29 | 1 | -0/+5 |
| | | | | | --HG-- branch : fix_source_encoding | ||||
* | Use assertRaises as a context manager now that we can. | Ned Batchelder | 2013-12-21 | 1 | -1/+2 |
| | |||||
* | Generator expressons are ok now. | Ned Batchelder | 2013-10-19 | 1 | -1/+1 |
| | | | | | --HG-- branch : 4.0 | ||||
* | We only run on 2.6, 2.7, 3.2, 3.3 now. | Ned Batchelder | 2013-10-19 | 1 | -7/+2 |
| | | | | | --HG-- branch : 4.0 |