Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Migrate tests to use pathlib.Path | Tzu-ping Chung | 2022-06-08 | 1 | -2/+3 |
| | | | | | | | | | | The pip-specific Path implementation has been removed, and all its usages replaced by pathlib.Path. The tmpdir and tmpdir_factory fixtures are also removed, and all usages are replaced by tmp_path and tmp_path_factory, which use pathlib.Path. The pip() function now also accepts pathlib.Path so we don't need to put str() everywhere. Path arguments are coerced with os.fspath() into str. | ||||
* | Complete type annotations of tests/functional/ directory | Jon Dufresne | 2021-11-18 | 1 | -2/+2 |
| | |||||
* | Complete type annotations for tests/conftest.py and tests/lib/* | Jon Dufresne | 2021-09-29 | 1 | -5/+13 |
| | |||||
* | Blacken tests/lib | Pradyun Gedam | 2021-04-02 | 1 | -22/+24 |
| | |||||
* | Remove __future__ imports | Jon Dufresne | 2020-12-24 | 1 | -2/+0 |
| | | | | Unnecessary since dropping Python 2. | ||||
* | Make explicit argument for git commit -a | Chris Hunt | 2020-01-03 | 1 | -1/+3 |
| | |||||
* | Remove unnecessary expect_error. | Chris Hunt | 2019-08-10 | 1 | -3/+2 |
| | |||||
* | Rename compatible functions in tests.lib.path.Path. | Chris Hunt | 2019-07-02 | 1 | -7/+7 |
| | |||||
* | Add _git_commit() to tests.lib. | Chris Jerdonek | 2018-11-12 | 1 | -16/+7 |
| | |||||
* | Move a hard-coded relative path out of tests/lib. | Chris Jerdonek | 2018-11-11 | 1 | -11/+13 |
| | |||||
* | Simplify some git-commit calls in the test code. | Chris Jerdonek | 2018-10-24 | 1 | -6/+5 |
| | |||||
* | DRY up the test code to create a module with a main() function. | Chris Jerdonek | 2018-10-23 | 1 | -4/+3 |
| | |||||
* | Isolate our tests from the running user's configuration | Donald Stufft | 2014-05-07 | 1 | -5/+5 |
| | |||||
* | Turn on everything in flake8 | Donald Stufft | 2014-02-24 | 1 | -4/+4 |
| | | | | | | flake8 ignores some errors by default, these ignored by defaults change sometimes. This will make things stabler by selecting everything. | ||||
* | Use Flake8 on the test of pip's Python files | Donald Stufft | 2014-01-28 | 1 | -5/+20 |
| | |||||
* | Refactor tests.lib into classes that can be used to modify state | Donald Stufft | 2013-08-27 | 1 | -0/+2 |
| | |||||
* | Refactor tests.lib | Donald Stufft | 2013-08-21 | 1 | -11/+11 |
| | | | | | | | | | | | | | | * Move virtualenv creation out of TestPipEnvironment * Remove global state and force explicit use of TestPipEnvironment instances * Remove "backup" virtualenv copying and instead create new virtual environments each time. * Remove the monkeypatched "PyPICache" functionality * Remove things that were not being used anymore and were dead weight * Remove sitecustomize support which was primarily used to monkeypatch the "PyPICache" but was used in one or two other tests. | ||||
* | break up tests dir into data, unit tests, and functional tests | Marcus Smith | 2013-05-29 | 1 | -0/+65 |