summaryrefslogtreecommitdiff
path: root/tests/unit/create/conftest.py
Commit message (Collapse)AuthorAgeFilesLines
* Drop Python 2 support (#2548)Bernát Gábor2023-04-191-52/+3
|
* Bump dependencies and build tools (#2394)Bernát Gábor2022-08-041-1/+1
| | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Drop support of running under Python 2.7 (#2382)Bernát Gábor2022-07-251-6/+5
|
* Upgrade setuptools and pip (#1939)Bernát Gábor2020-09-101-1/+9
|
* Implement periodic update feature (#1841)Bernát Gábor2020-06-211-2/+2
| | | Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
* Bump linters (#1823)Bernát Gábor2020-05-121-1/+1
|
* Fix setting PYTHONPATH on Python 2 not working (#1673)Julien Danjou2020-03-031-8/+8
| | | | | | | | | - ensure we do not rewrite the ``PYTHONPATH`` - ensure we respect the ``-E`` flag Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* expose and document programmatic API (#1592)Bernát Gábor2020-02-121-2/+2
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Better handling of base executable not found #1515Bernát Gábor2020-01-301-3/+7
| | | | | | | Improve the base executable discovery mechanism: - print at debug level why we refuse some candidates, - when no candidates match exactly, instead of hard failing fallback to the closest match where the priority of matching attributes is python implementation, major version, minor version, architecture, patch version, release level and serial (this is to facilitate things to still work when the OS upgrade replace/upgrades the system python with a newer version than what the virtualenv host python was created with), - always resolve system_executable information during the interpreter discovery, and the discovered environment is the system interpreter instead of the venv/virtualenv (this happened before lazily the first time we accessed and caused reporting that the created virtual environment is of type of the virtualenv host python version, instead of the system pythons version - these two can differ if the OS upgraded the system python underneath and the virtualenv host was created via copy),
* support for c-extension builds within virtualenv (#1503)Bernát Gábor2020-01-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * test include folders - add test to check if it works Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * pypy add lib on Linux Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Windows * fix Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * debug macos Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * try fix pypy windows Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Windows * fix * fix Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * Windows PyPy just does not understand non-ascii PATHS :-( * allow pypy3 to fail Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* separate describe/create - check upfront if can create (#1502)Bernát Gábor2020-01-211-0/+92
* start Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * test for Windows Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * test for Windows Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Windows symlink cache