Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | test: a debug helper to show made-file contents | Ned Batchelder | 2022-01-15 | 1 | -0/+7 |
| | |||||
* | refactor(test): make re_lines (et al) look like re.search | Ned Batchelder | 2021-10-28 | 1 | -5/+5 |
| | | | | and also replace some calls with just-plain re.search. | ||||
* | refactor(test): re_lines is more useful if it returns a list | Ned Batchelder | 2021-10-27 | 1 | -4/+10 |
| | |||||
* | refactor(test): os_sep and remove_tree helpers | Ned Batchelder | 2021-10-24 | 1 | -0/+14 |
| | |||||
* | test: subprocess diagnostic for when we need it | Ned Batchelder | 2021-10-16 | 1 | -0/+6 |
| | |||||
* | style: use the official designation for utf-8 | Ned Batchelder | 2021-10-10 | 1 | -1/+1 |
| | | | | | Yes, this is completely unimportant. Don't ask me why I bothered, I'm not really sure. | ||||
* | Support TOML v1.0.0 syntax in `pyproject.toml` (#1186) | Thomas Grainger | 2021-07-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | * Support TOML v1.0.0 syntax in `pyproject.toml` fixes #1180 Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> * fix toml meta test * use pytest.mark.parametrize to narrow test failure * Update tests/test_config.py Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com> | ||||
* | test: better checking for CoverageWarnings | Ned Batchelder | 2021-05-31 | 1 | -2/+2 |
| | | | | | On Python 3.10, we were getting other warnings mixed into the warnings the tests were looking for. This change lets us only look at the CoverageWarnings. | ||||
* | test: simplify run_command output handling | Ned Batchelder | 2021-05-30 | 1 | -5/+3 |
| | | | | | The type-check is left over from Python 2 compatibility, we don't need it anymore. | ||||
* | feat: warnings are now real warnings | Ned Batchelder | 2021-05-30 | 1 | -0/+15 |
| | | | | | | This makes coverage warnings visible when running test suites under pytest. But it also means some uninteresting warnings would show up in our own test suite, so we had to catch or suppress those. | ||||
* | refactor: pyupgrade --py36-plus tests/**.py | Ned Batchelder | 2021-05-02 | 1 | -7/+5 |
| | |||||
* | refactor: remove code explicitly choosing between py2 and py3 | Ned Batchelder | 2021-05-01 | 1 | -10/+1 |
| | |||||
* | fix: don't measure third-party scriptsnedbat/bin-exclude | Ned Batchelder | 2021-04-11 | 1 | -1/+1 |
| | | | | | | This finishes the last bit of #905 Also includes tighter logging of the reason for not tracing modules. | ||||
* | refactor: nice_file can be used as a function | Ned Batchelder | 2021-03-22 | 1 | -0/+6 |
| | |||||
* | refactor: make_file can be used as a function | Ned Batchelder | 2021-03-22 | 1 | -0/+42 |
| | |||||
* | refactor: pull module cleaning into here | Ned Batchelder | 2021-03-11 | 1 | -26/+1 |
| | | | | We don't need unittest_mixins' module cleaner anymore. | ||||
* | refactor: our own change_dir context manager | Ned Batchelder | 2021-03-11 | 1 | -0/+17 |
| | | | | We don't need to use the one from unittest_mixins. | ||||
* | refactor: slightly better coverage in coveragetest | Ned Batchelder | 2021-02-21 | 1 | -1/+1 |
| | |||||
* | refactor: remove unittest.assertCountEqual | Ned Batchelder | 2021-02-06 | 1 | -0/+11 |
| | | | | Another step toward removing unittest.TestCase. | ||||
* | Simplify the testing of the toml extra, fixing #1084 | Ned Batchelder | 2021-01-18 | 1 | -0/+19 |
| | |||||
* | Move test helpers to tests.helpers | Ned Batchelder | 2019-12-31 | 1 | -0/+70 |
| | |||||
* | Combine test helpers: remove_files | Ned Batchelder | 2019-12-17 | 1 | -3/+8 |
| | |||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 |
| | |||||
* | Refactor module cleaning so we can use it outside of tests | Ned Batchelder | 2017-02-11 | 1 | -1/+30 |
| | |||||
* | Get rid of some unused code paths | Ned Batchelder | 2017-01-20 | 1 | -3/+1 |
| | |||||
* | Promote re_line and re_lines to real helpers, with tests. | Ned Batchelder | 2017-01-15 | 1 | -0/+24 |
| | |||||
* | Add a test of CheckUniqueFilenames | Ned Batchelder | 2017-01-15 | 1 | -4/+12 |
| | |||||
* | Use a 2/3 name for unicode | Ned Batchelder | 2016-11-23 | 1 | -1/+2 |
| | |||||
* | Window encodings? | Ned Batchelder | 2015-11-01 | 1 | -2/+3 |
| | |||||
* | Merge | Ned Batchelder | 2015-10-31 | 1 | -1/+6 |
|\ | |||||
| * | Account for no encoding at all... | Ned Batchelder | 2015-10-25 | 1 | -3/+5 |
| | | |||||
| * | Diagnostic for appveyor, part 2 of N | Ned Batchelder | 2015-10-25 | 1 | -1/+2 |
| | | |||||
| * | Diagnostic for appveyor | Ned Batchelder | 2015-10-25 | 1 | -1/+3 |
| | | |||||
* | | Fix the non-ascii filename tests on windows (?) | Ned Batchelder | 2015-10-31 | 1 | -0/+5 |
|/ | |||||
* | Set the PYTHONIOENCODING environment variable in an OS-neutral way. | Ned Batchelder | 2015-10-25 | 1 | -1/+3 |
| | |||||
* | Properly handle filenames with non-ASCII characters. #432 | Ned Batchelder | 2015-10-25 | 1 | -1/+6 |
| | |||||
* | Fix 'filename' to be 'file name' in English. | Ned Batchelder | 2015-08-20 | 1 | -2/+2 |
| | |||||
* | Fiddling | Ned Batchelder | 2015-07-26 | 1 | -2/+0 |
| | |||||
* | Add license mention to the top of all files. #313. | Ned Batchelder | 2015-07-24 | 1 | -0/+3 |
| | |||||
* | Move some code to where it belongs | Ned Batchelder | 2015-02-14 | 1 | -0/+26 |
| | |||||
* | Re-use CheckUniqueFilenames for test_collector.py | Ned Batchelder | 2015-02-08 | 1 | -0/+25 |