summaryrefslogtreecommitdiff
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Overhaul for better visibility of warnings (#3849)Anderson Bravalheri2023-04-201-0/+1
|\
| * Enforce deprecation warnings in setuptools test suiteAnderson Bravalheri2023-03-071-0/+1
| |
* | Update code generated by validate-pyprojectAnderson Bravalheri2023-03-281-1/+1
|/
* Merge https://github.com/jaraco/skeletonJason R. Coombs2023-02-121-1/+4
|\
| * Enable default encoding warning where available. See PEP 597.Jason R. Coombs2023-01-271-1/+4
| |
* | Bump 'validate-pyproject' to 0.12.1Anderson Bravalheri2023-01-271-1/+1
| |
* | Update generated validation code using validate_pyproject==0.12Anderson Bravalheri2023-01-251-1/+1
| |
* | Merge https://github.com/jaraco/skeletonJason R. Coombs2022-12-231-0/+1
|\ \ | |/ | | | | | | # Conflicts: # .github/workflows/main.yml
| * Build docs in CI, including sphinx-lint.Jason R. Coombs2022-12-171-0/+1
| |
* | Update validate_pyprojectAnderson Bravalheri2022-09-021-1/+1
| |
* | Always pass the test suite to pytest. Ref #3448.Jason R. Coombs2022-07-131-1/+1
| |
* | Merge https://github.com/pypa/distutils into feature/distutils-a7cfb56a7b1eaaJason R. Coombs2022-05-101-9/+1
|\ \
| * \ Merge branch 'main' into issue-132Jason R. Coombs2022-04-291-5/+3
| |\ \
| | * | Prefer tox 3.25 with built-in support for Windows env vars.Jason R. Coombs2022-04-291-5/+3
| | | |
| * | | Prefer tabsJason R. Coombs2022-04-291-7/+7
| | | |
| * | | Rely on jaraco.envs for environment creation.Jason R. Coombs2022-04-291-0/+1
| |/ /
| * | Disable installation of Setuptools in tox instead of GHA. Ref pypa/distutils#99.Jason R. Coombs2022-03-271-0/+2
| | |
| * | Add upstream reference.Jason R. Coombs2022-03-191-0/+1
| | |
| * | Pass through PROGRAMDATA, PROGRAMFILES env variablesIsuru Fernando2022-03-161-0/+4
| | |
| * | Use tox for testsJason R. Coombs2020-06-281-0/+8
| /
* | Update validate-pyproject to v0.7.1Anderson Bravalheri2022-03-301-1/+1
| |
* | Update version of validate-pyprojectAnderson Bravalheri2022-03-301-1/+1
| |
* | Separate vendoring script and code generator for pyproject validationsAnderson Bravalheri2022-03-301-0/+7
| |
* | Use the same comment as distutilsAnderson Bravalheri2022-03-201-2/+2
| |
* | Attempt to re-enable Windows testsAnderson Bravalheri2022-03-171-0/+8
| | | | | | | | | | According to a comment in pypa/distutils#118 this problem might be solved by allowing tox to pass some environment variables.
* | [CI] Allow pre-built distribution to be used in tests with virtualenvsAnderson Bravalheri2022-03-071-0/+2
| |
* | Merge pull request #3099 from abravalheri/flaky-test-build-metaJason R. Coombs2022-02-141-0/+1
|\ \ | | | | | | Add timeout to `test_build_meta`
| * | Prevent type error from env varAnderson Bravalheri2022-02-121-1/+1
| | |
| * | Add timeout to test_build_metaAnderson Bravalheri2022-02-121-0/+1
| | | | | | | | | | | | | | | | | | | | | As discussed in #3087, `test_build_meta` seems to be flaky specially for the combination of Windows + PyPy. This is a proposed workaround for such scenarios.
* | | Remove invocation of bootstrap script in release process.Jason R. Coombs2022-02-131-1/+0
|/ /
* | Remove dependency on paver in vendored update.Jason R. Coombs2022-01-141-2/+2
| |
* | Move vendor routine to toolsJason R. Coombs2022-01-141-1/+1
| |
* | Create tox routine for updating vendored packages.Jason R. Coombs2022-01-141-0/+7
| |
* | Capture performance of interpreter startup. Ref #3006.feature/distutils-hack-startup-perfJason R. Coombs2022-01-071-0/+2
| |
* | Remove dependency on pytest_virtualenvAnderson Bravalheri2022-01-061-2/+1
| | | | | | | | | | Now that all tests use `jaraco.envs`, there is no need to depend on `pytest_virtualenv`.
* | Merge branch 'main' into integration-testsmergify[bot]2022-01-061-3/+0
|\ \
| * | Remove workaround for test/CI dependency on SphinxAnderson Bravalheri2021-12-271-3/+0
| | | | | | | | | | | | | | | It seems that Sphinx now supports Python 3.10, which means that we can remove the dependency workaround.
* | | Simulate pip's isolation using virtualenvAnderson Bravalheri2021-12-211-0/+2
| | |
* | | Use separated "extras" for integration testsAnderson Bravalheri2021-12-211-2/+2
| | | | | | | | | | | | Instead of disabling pytest plugins, simply don't install them
* | | Disable pytest plugins in integration tests via -p no:*Anderson Bravalheri2021-12-211-1/+1
| | |
* | | Add tox environment for integration testsAnderson Bravalheri2021-12-211-0/+10
|/ /
* | Avoid using dependencies with URLs on setup.cfgAnderson Bravalheri2021-11-141-0/+2
| | | | | | | | | | | | PyPI does not accept this kind of dependencies. An alternative is to overwrite the dependency in tox.ini
* | Remove superfluous dep.Jason R. Coombs2021-11-101-1/+0
| |
* | Get pytest-virtualenv from the pull request with distutils dependency removed.Jason R. Coombs2021-11-101-5/+1
| |
* | tox.ini (testenv): Make sure to import setuptools before distutils when ↵Matthias Koeppe2021-11-091-1/+5
| | | | | | | | invoking pytest
* | tox.ini (testenv): Add deps = pytestMatthias Koeppe2021-11-091-0/+1
| |
* | tox.ini (testenv): passenv SETUPTOOLS_USE_DISTUTILSMatthias Koeppe2021-11-091-0/+1
| |
* | Fix broken Sphinx builds on Python 3.10. Fixes #2763. Ref ↵v57.5.0Jason R. Coombs2021-09-041-0/+3
| | | | | | | | sphinx-doc/sphinx#9562.
* | Remove codecov and coverage testenvs and env var config, unneeded.Jason R. Coombs2021-07-181-18/+0
| |
* | Merge https://github.com/jaraco/skeletonJason R. Coombs2021-07-041-2/+1
|\ \ | |/