summaryrefslogtreecommitdiff
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Simplify structure of requirement filesDaniel van Noord2023-04-261-3/+2
|
* Drop support for Python 3.7 (#2137)Marc Mueller2023-04-231-1/+1
|
* Clean-up and fix tox's commands (#1963)Pierre Sassoulas2023-02-081-50/+4
| | | | | | | | | | | | | | | * [tox] Add python 3.11 to the list of interpreters Refs #1960 * Update build system dependencies * Update pre-commit requirements * Fix Sphinx errors --------- Co-authored-by: Avram Lubkin <aviso@rockhopper.net>
* Use an isolated build for Tox (#1733)Mark Byrne2022-08-071-0/+1
|
* Require Python 3.7.2 (#1542)Jacob Walls2022-05-101-1/+1
|
* Update links to use mainMarc Mueller2021-06-301-2/+2
|
* Improve Sphinx config (#1001)Marc Mueller2021-06-161-1/+1
| | | | | | | * Update and pin Sphinx version * Update conf * Group class members * Display typehints in description * Update tox so doc env isn't reused
* Update requirementsMarc Mueller2021-05-251-2/+2
|
* Update tox envlist (#989)Marc Mueller2021-05-111-1/+1
| | | | * Update tox envlist * CI - improve restore key pypy
* Consolidate test casesMarc Mueller2021-04-241-4/+2
|
* Fix pylint installation in CIPierre Sassoulas2021-04-241-0/+3
|
* Remove job that are already checked by github actionsPierre Sassoulas2021-04-231-3/+3
|
* Remove backports.functools_lru_cache dependencyMarc Mueller2021-04-221-1/+0
|
* Create a requirements file for brain testsPierre Sassoulas2021-04-211-4/+1
|
* Create a minimal requirements file for testsPierre Sassoulas2021-04-211-3/+1
|
* Use editable install for astroid's dependenciesPierre Sassoulas2021-04-211-3/+1
|
* Add pylint and pytest to the dependency in tox -e formattingPierre Sassoulas2021-04-201-2/+2
|
* Remove python < 3.4 compatibility code for enum modulePierre Sassoulas2021-04-191-1/+0
|
* Add .readthedocs.yaml so every contributor can change read the doc configPierre Sassoulas2021-04-181-1/+1
|
* Remove all warnings in generated documentationPierre Sassoulas2021-04-181-1/+0
|
* Formatting test now take all pre-commit hook into acccountPierre Sassoulas2021-04-181-3/+3
|
* Update black version - toxMarc Mueller2021-02-271-1/+2
|
* Remove Python 3.5 supportDavid Gilman2020-12-311-5/+4
| | | | | pytest very recently dropped support for it, and if we can't run our tests on the platform we can't really support it
* Add tox support for six-less environmentsDavid Gilman2020-12-311-6/+6
|
* Allow wrapt 1.12Felix Mölder2020-12-241-1/+1
|
* Adds python3.9 testhippo912020-11-221-4/+4
|
* Relax upper bound on `wrapt` (#756)Michael2020-02-271-1/+1
| | | Closes PyCQA/astroid#755
* Pin coverage to <5 to account for the private coverage format changingClaudiu Popa2019-12-161-3/+3
|
* Takes into account the fact thathippo912019-12-091-2/+2
| | | | | ufunc functions are now instances of FakeUfunc class and that the call to these functions implies the use of __call__ protocol.
* Update six version to 1.13 (#719)Uilian Ries2019-11-061-1/+1
| | | | Signed-off-by: Uilian Ries <uilianries@gmail.com>
* Moved tests out of package directory (#704)Ashley Whetter2019-10-151-2/+2
|
* Pin all the dependencies we use right nowClaudiu Popa2019-09-261-3/+3
|
* Force typed_ast >= 1.4.0 for all supported Python versionsClaudiu Popa2019-09-261-2/+1
|
* Fix non-existing pytest --pyarg option (#682)Thomas Hisch2019-07-051-1/+1
| | | | Fixes a typo introduced in 18591e5e3e18026c770c48cbc044a77333231fc5
* Drop support for Python 3.4Claudiu Popa2019-06-201-4/+4
|
* Use the same versions in tox as in __pkginfo__Claudiu Popa2019-02-271-1/+2
|
* Add black step in tox.ini and Travis, as well as the badgeClaudiu Popa2018-10-021-0/+6
|
* Use --append and drop the use of .envnameClaudiu Popa2018-09-301-3/+3
|
* Use the correct coverage file and make sure to delete the correct coverage fileClaudiu Popa2018-09-301-3/+4
|
* Remove the absolute to relative path transform for coverage, which is no ↵Claudiu Popa2018-09-301-7/+2
| | | | longer needed as tests are not installed with the package anymore
* Switch to latest pylint's from GithubClaudiu Popa2018-09-301-3/+2
|
* Also install typed_ast in toxClaudiu Popa2018-07-151-0/+1
|
* Fix lintingClaudiu Popa2018-06-141-0/+1
|
* Always use the latest pylint for lintingClaudiu Popa2018-06-131-0/+2
|
* Build the docs with toxClaudiu Popa2018-06-041-0/+10
|
* Use 3.8-dev in order to get access to better 3.7 support on CI :(Claudiu Popa2018-05-311-1/+1
|
* Remove py27 completely from toxClaudiu Popa2018-02-211-5/+5
|
* Stop advertising python 2 supportClaudiu Popa2018-02-211-1/+1
|
* Make note about nose dependency in toxBryce Guinta2018-02-141-0/+2
|
* Use pytest as default test runner instead of unittest for toxBryce Guinta2018-02-141-1/+5
| | | | | | | | | | There was some trouble getting this to work. I needed to use --pyargs for pytest to work in tox Allow for test file prefix unittest_ to be changed to standard test_ Helps with updating the astroid tests to standard pytest conventions Make pytest use proper test directory by default