aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2254 from pypa/better-covJason R. Coombs2020-07-121-4/+0
|\ | | | | Programmatically disable coverage when running on PyPy.
| * Programmatically disable coverage when running on PyPy.Jason R. Coombs2020-07-121-4/+0
| |
* | Merge pull request #2166 from pypa/bugfix/2165-remove-site-pyJason R. Coombs2020-07-031-2/+0
|\ \ | |/ |/| Remove site.py hack
| * Setuptools no longer installs a site.py file during easy_install or develop ↵Jason R. Coombs2020-05-291-2/+0
| | | | | | | | installs. Ref #2165.
* | More directly disable coverage when running tests on pypy.Jason R. Coombs2020-07-021-1/+5
| |
* | Move coverage configuration to .coveragerc. Saves characters and separates ↵Jason R. Coombs2020-07-021-8/+1
|/ | | | concerns.
* The workaround is only needed for Python 2. Ref #1998.Jason R. Coombs2020-05-291-1/+1
|
* Pass environment variables when running finalize. Fixes #2057.Jason R. Coombs2020-04-061-0/+1
|
* Avoid install during finalizeJason R. Coombs2020-03-081-0/+1
|
* Replace playbook with code for finalizing a release.Jason R. Coombs2020-03-081-0/+7
|
* Use CPython 3.8.0 mechanism to find msvc 14+mayeut2020-03-071-1/+1
|
* Merge branch 'maint/44.x'Jason R. Coombs2020-02-151-0/+2
|\
| * Pin virtualenv to <20 as workaround for #1998.Jason R. Coombs2020-02-151-0/+2
| |
| * Bootstrap the environment in tox, allowing simple 'tox' to run tests and ↵Jason R. Coombs2020-02-061-3/+1
| | | | | | | | simplifying all of the pipelines.
* | Move docs dependencies into package metadata and use same technique as ↵Jason R. Coombs2020-01-211-5/+5
| | | | | | | | jaraco/skeleton to build docs in tox and rtd.
* | Set PIP_USE_PEP517 in installer command so as not to influence the tests ↵Jason R. Coombs2020-01-211-1/+0
| | | | | | | | with that setting.
* | Opt into PEP 517 for pip installs to avoid implicit dependency on Setuptools ↵Jason R. Coombs2020-01-201-0/+1
| | | | | | | | to install test dependencies.
* | Rewrite selective PIP_IGNORE_REQUIRES_PYTHON to allow test dependencies in ↵Jason R. Coombs2020-01-201-1/+0
| | | | | | | | metadata to be installed without ignoring REQUIRES_PYTHON
* | Move test dependencies to package metadata.Jason R. Coombs2020-01-191-1/+2
| |
* | Merge pull request #1980 from pypa/feature/bootstrap-in-toxJason R. Coombs2020-01-191-3/+1
|\ \ | | | | | | Bootstrap the environment in tox, allowing simple 'tox' to run tests.
| * | Bootstrap the environment in tox, allowing simple 'tox' to run tests and ↵Jason R. Coombs2020-01-191-3/+1
| | | | | | | | | | | | simplifying all of the pipelines.
* | | Remove another reference to py27Jason R. Coombs2020-01-191-1/+1
|/ /
* / Restore testing on Python 2, bypassing the requires-python check when ↵Jason R. Coombs2020-01-121-1/+3
|/ | | | installing setuptools.
* Rely on tox-pip-version to upgrade pip and minimize the hack for removing ↵Jason R. Coombs2020-01-121-3/+5
| | | | setuptools from the environment.
* Merge pull request #1908 from benoit-pierre/drop_py34_supportJason R. Coombs2020-01-011-1/+1
|\ | | | | drop support for Python 3.4
| * drop support for Python 3.4Benoit Pierre2019-11-151-1/+1
| |
* | Publish release notes to tidelift following release.Jason R. Coombs2019-12-011-0/+3
| |
* | Restore 'setup.py' release stepJason R. Coombs2019-12-011-2/+2
| |
* | Invoke bootstrap prior to cutting release.Jason R. Coombs2019-12-011-0/+1
| |
* | Add 'release' tox environment from jaraco/skeletonJason R. Coombs2019-11-301-0/+15
|/
* tweak workaround for #1644Benoit Pierre2019-11-151-1/+1
| | | | Work around buggy pip detection code for "pip.exe install/update pip ...".
* improve workaround for #1644Benoit Pierre2019-10-071-6/+8
| | | | Make it possible to use a more recent version of pip for tests.
* tox: tweak configurationBenoit Pierre2019-05-141-1/+1
| | | | | Fix the `list_dependencies_command` so arguably the most important packages are not hidden (pip, setuptools, and wheel).
* Require network in CI buildsPaul Ganssle2019-02-231-1/+1
|
* tests: temporary pin pip to fix the Python 2.7 jobBenoit Pierre2019-01-261-1/+1
|
* coverage: disable gcov processingBenoit Pierre2018-10-211-1/+1
| | | | | | | | We don't need it and it generates a couple of error messages on AppVeyor: FIND: Parameter format not correct [...] Error running `find 'C:\projects\setuptools' -not - [...]
* tox: fix configuration so newer tox versions are supportedBenoit Pierre2018-08-111-0/+6
| | | | | | | | | | | Starting with tox 3.2.0, the commands for installing/listing dependencies changed from pip to python -m pip, which is problematic as this will leave bits of the previous (from the virtualenv creation) older version of setuptools installed in the site-packages directory because from pip's point of view, the active setuptools version is the one in the current directory (which cannot be uninstalled). Fix #1453.
* Drop support for EOL Python 3.3Hugo2018-05-241-1/+1
|
* Fix doc build warningsJeremy Bowman2018-05-141-2/+2
|
* Add tox environment for docsJeremy Bowman2018-05-141-0/+8
|
* Improve speed and clarity of code coverageBenoit Pierre2018-03-271-12/+11
| | | | | | | | | | | | Rationale: - tox should work the same as before - coverage is too slow and disabled by default locally - disable coverage on pypy and pypy3 (way too slow) - add coverage info for pkg_resources - make sure tests are ignored in coverage - make sure all CI jobs are identifiable - include coverage for xfail (too complicated otherwise) - disable report on terminal
* Start omitting */_vendor/*Paul Ganssle2018-03-231-1/+1
|
* Update tox passenvPaul Ganssle2018-03-231-1/+3
|
* Omit vendored code from coveragePaul Ganssle2018-03-231-0/+1
|
* Add travis, appveyor and codecov passenvsPaul Ganssle2018-03-231-1/+1
| | | | | | Some of these environment variables are necessary codecov to detect that it is on travis/appveyor and thus doesn't need an upload token.
* Add codecov to tox and travisPaul Ganssle2018-03-231-0/+6
|
* Add coverage generation to toxPaul Ganssle2018-03-231-1/+23
|
* Drop support for Python 2.6 by merging the drop-py26 branch. Fixes #878.Jason R. Coombs2017-11-201-1/+1
|\
| * Remove reference to Python 2.6 as a supported interpreter.drop-py26Jason R. Coombs2017-11-201-1/+1
| |
* | PyPy3 is supportedJason R. Coombs2017-11-201-1/+1
|/