summaryrefslogtreecommitdiff
path: root/tests/integration
Commit message (Collapse)AuthorAgeFilesLines
* 3.12 support and no setuptools/wheel on 3.12+ (#2558)chrysle2023-04-271-2/+4
|
* Drop Python 2 support (#2548)Bernát Gábor2023-04-192-2/+4
|
* Bump embedded pip and setuptools (#2489)Bernát Gábor2023-02-051-4/+3
|
* Move to hatchling, drop 3.6 support (#2474)Bernát Gábor2022-12-291-2/+1
|
* 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-252-12/+6
|
* Fix the CI (#2254)Bernát Gábor2021-12-281-0/+4
|
* Restore python3.4 support (add it back to CI) (#1965)Bernát Gábor2020-10-041-2/+5
|
* Implement periodic update feature (#1841)Bernát Gábor2020-06-211-1/+2
| | | Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
* Add 3.9 on Linux to the test suite (#1839)Bernát Gábor2020-05-221-0/+2
|
* Bump linters (#1823)Bernát Gábor2020-05-121-1/+1
|
* Bump pip to 20.1 (#1795)Bernát Gábor2020-04-291-1/+9
|
* Fix pinning seed packages via app-data fails (#1788)Bernát Gábor2020-04-271-0/+19
|
* Run test suite in parallel (#1786)Bernát Gábor2020-04-251-1/+0
|
* add timeout for tests (#1700)Bernát Gábor2020-03-081-0/+1
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* handle application data folder is read only (#1661)Seungmin Ryu2020-02-261-2/+1
| | | | | | | | | | | | | | | | | | | | * fixed FileNotFoundError when directory isn't writable (#1640) - when using docker, if `user_data_dir()` isn't writable directory, `default_data_dir()` use `system temp directory` + `virtualenv`. for example, tempdir is `/tmp`, it use `/tmp/virtualenv` * start making the app-data more explicit and robust Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Windows * fix docs Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* Lower min version of six to 1.9 (#1606)Sorin Sbarnea2020-02-131-2/+2
| | | | | This change should allow installation of virtualenv on systems with older six where their LTS support may prevent them from upgrading it.
* expose and document programmatic API (#1592)Bernát Gábor2020-02-121-3/+3
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* avoid copying the stats with copytree (#1571)Bernát Gábor2020-02-111-1/+1
| | | | | | | | | | | | * avoid copying the stats with copytree This information is not needed, so it's redundant work; similarly it might not be allowed (e.g. on macOS framework python). Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix
* Make app data override variable public (#1559)Anthony Sottile2020-02-101-1/+1
|
* rewrite the documentation (#1519)Bernát Gábor2020-02-041-2/+2
|
* Better handling of base executable not found #1515Bernát Gábor2020-01-301-1/+2
| | | | | | | 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),
* separate describe/create - check upfront if can create (#1502)Bernát Gábor2020-01-211-1/+1
| | | | | | | | | | | | | | | | * 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
* Improve CI performance on pypy (#1499)Bernát Gábor2020-01-171-8/+16
| | | | | | Use CPython3 implementation if possible to build the zipapp. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* add zipapp support with bundled dependencies (#1491)Bernát Gábor2020-01-161-0/+78
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>