summaryrefslogtreecommitdiff
path: root/tox.ini
AgeCommit message (Collapse)Author
2018-05-16Use a more recent hypothesis version on CIBruno Oliveira
2018-04-11Simplify tox to avoid repetitionBruno Oliveira
Also took the opportunity to: * Use more cores for py*-xdist environments * Update freeze test to use py36
2018-04-03Use correct spelling for "more-itertools"Stefan Scherfke
2018-03-21Merge remote-tracking branch 'upstream/master' into release-3.5.0Bruno Oliveira
2018-03-18Fix tests to not fail when running from root.Jeffrey Rackauckas
2018-03-16Merge remote-tracking branch 'upstream/master' into merge-master-into-featuresBruno Oliveira
2018-03-06Remove basepython from testenv:docs so it can be built with Python 3Bruno Oliveira
2018-03-06Use sphinxcontrib-trio extensionBruno Oliveira
This adds some more capabilities to sphinx, like marking functions as decorators or with contexts
2018-03-05Add doc to norecursedirs in tox.iniJeffrey Rackauckas
2018-01-09Merge remote-tracking branch 'upstream/master' into featuresBruno Oliveira
2018-01-08Ignore ImportWarnings regarding package resolutionBruno Oliveira
The problem is described/discussed in #3061 Ideally this should be a temporary solution until we find a proper one which gets rid of the warning
2017-12-18move node base classes from main to nodesRonny Pfannschmidt
2017-12-09fix tox.ini comment typosJurko Gospodnetić
2017-11-10Merge remote-tracking branch 'upstream/master' into merge-master-into-featuresBruno Oliveira
2017-11-04Fix linting E722: do not use bare exceptBruno Oliveira
2017-11-04Fix linting E741: ambiguous variable nameBruno Oliveira
2017-11-03Merge upstream/master into featuresBruno Oliveira
2017-10-26Change directory for py27 xdist-related envsBruno Oliveira
The "filter_traceback" function was not filtering the frames that belonged to the pytest internals. "filter_traceback" was receiving *relative* paths when running with xdist, and full paths in non-distributed runs; for this reason the traceback function did not consider the received path to be relative to the pytest internal modules. Fix #2843
2017-10-24Merge remote-tracking branch 'upstream/master' into merge-master-into-featuresBruno Oliveira
2017-10-23Add E722 and E741 flake errors to the ignore listBruno Oliveira
Also fixed 'E704 multiple statements on one line (def)' in python_api
2017-10-09remove eol python from the ci configRonny Pfannschmidt
2017-10-09start the removal of python 2.6/3.3 supportRonny Pfannschmidt
2017-09-27minor: cleanup tox.iniDaniel Hahler
2017-09-18Merge remote-tracking branch 'upstream/master' into featuresBruno Oliveira
2017-09-16Change to py36 as main environment for Python 3 environments in toxBruno Oliveira
This also has the benefit of working around Travis recent failures in Python 3.5 environments.
2017-09-06Merge branch 'features' into pluggy-masterBruno Oliveira
2017-09-05Set xfail_strict=True in pytest's own test suiteBruno Oliveira
Fix #2722
2017-09-05Merge remote-tracking branch 'upstream/master' into featuresBruno Oliveira
2017-09-05Refactor tox.ini so pluggymaster envs share definitionsBruno Oliveira
2017-09-01Create explicit 'pluggymaster' env definitionsBruno Oliveira
For some reason, the previous approach brakes 'coveralls' because pip still tries to install the 'pluggy' master requirement (git+https://...)
2017-09-01Change all pytest report options to the more concise '-ra' in tox.iniBruno Oliveira
2017-09-01Add test environment using pluggy from master branchBruno Oliveira
Fix #2737
2017-08-24Drop vendoring from packagingTyler Goodlet
2017-08-14Use py36 as preferred Python 3 interpreter for CI testingBruno Oliveira
2017-07-24Merge remote-tracking branch 'upstream/master' into featuresBruno Oliveira
2017-07-22Turn warnings into errors in pytest's own test suiteBruno Oliveira
Fix #2588
2017-07-22Add the numpy tests back into tox.iniKale Kundert
I'm not sure why they were removed...
2017-07-20Add "fix-lint" tox environment to fix linting errorsBruno Oliveira
2017-07-19Merge remote-tracking branch 'upstream/features' into fix-flake8-errorsBruno Oliveira
2017-07-19Remove SETUPTOOLS_SCM_PRETEND_VERSION during lintingBruno Oliveira
It was needed because of check-manifest, but we no longer have a MANIFEST file so it is not necessary
2017-07-17Merge branch 'fix-flake8-issues' into featuresBruno Oliveira
2017-07-17Fixed E731 flake8 errorsAndras Tim
do not assign a lambda expression, use a def
2017-07-17Fixed E712 flake8 errorsAndras Tim
comparison to True should be ‘if cond is True:’ or ‘if cond:’
2017-07-17Fixed E704 flake8 errorsAndras Tim
multiple statements on one line (def)
2017-07-17Fixed E702 flake8 errorsAndras Tim
multiple statements on one line (semicolon)
2017-07-17Fixed E701 flake8 errorsAndras Tim
multiple statements on one line (colon)
2017-07-17Fixed E501 flake8 errorsAndras Tim
line too long (> 120 characters)
2017-07-17Fixed E402 flake8 errorsAndras Tim
module level import not at top of file
2017-07-17Fixed E401 flake8 errorsAndras Tim
multiple imports on one line
2017-07-17Fixed E303 flake8 errorsAndras Tim
too many blank lines (3)