summaryrefslogtreecommitdiff
path: root/setup.py
AgeCommit message (Collapse)Author
2017-07-26Add ordereddict to install_requires for py26Lawrence Mitchell
2017-05-31Install py 1.4.33 that contains the fnmatch py.std import fix.Andreas Pelme
2017-04-23restore setuptools_scm write_to usageRonny Pfannschmidt
2017-04-19restore linting, drop _pytest._version for check-manifestRonny Pfannschmidt
2017-04-19second take at setuptools_scmRonny Pfannschmidt
since setuptools 18.6 fixes the issues with develop installs https://github.com/pypa/setuptools/blob/master/CHANGES.rst#186 https://github.com/pypa/setuptools/issues/439
2017-01-22Add py36 identifierVictor Uriarte
and order AUTHORS
2017-01-22take off author_email after pypi rejectsRonny Pfannschmidt
2016-12-19Explicitly add setuptools to install_requiresStefan Scherfke
Setuptools is used in `_pytest/config.py` but was not explicitly listed as requirement. This led to an error when creating a Conda package for pytest since setuptools is not necessarily installed by default in Conda envs.
2016-11-09Add keywords to setup.py as suggested by pyromaBruno Oliveira
Related to #1
2016-06-27drop python 3.0-3.2 support code from setup.pyRonny Pfannschmidt
addresses #1627
2016-06-25Remove all py.test-X* entry points.Oliver Bestwalter
The versioned, suffixed entry points are not documented and a leftover from a pre-virtualenv world. They also are broken for wheels.
2016-06-21Introduce pytest command as recommended entry pointDave Hunt
Fixes #1629
2016-05-18Convert readthedocs link for their .org -> .io migration for hosted projectsAdam Chainz
As per their email ‘Changes to project subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified. One was not modified - `http://media.readthedocs.org/epub/pytest/latest/pytest.epub` - since it doesn't work on `readthedocs.io`.
2016-01-25Moved py.code code over to py.testBruno Oliveira
Fix #103
2015-09-17Merge pull request #1019 from mdboom/python3.5-docsholger krekel (rather uses bitbucket/hpk42)
Various updates to the docs to mention support for Python 3.5
2015-09-17update changelog/author info, bump version numberholger krekel
2015-09-17Various Python 3.5 documentation mentionsMichael Droettboom
2015-09-17revert setuptools_scm addition introduced with ↵holger krekel
f22d14b105553e99946ccdbe8c47bc450863d843
2015-09-07Create `_pytest.vendored_packages` and _pytest._pluggyBruno Oliveira
- Replace imports from "pluggy" to "_pytest._pluggy" - Fallback to import "pluggy" from global namespace if not found in _pytest.vendored_packges
2015-07-25use setuptools_scm to determine the versionRonny Pfannschmidt
2015-06-23Merge branch 'pytest-2.7'holger krekel
Conflicts: AUTHORS _pytest/__init__.py setup.py testing/conftest.py tox.ini
2015-06-22bump version to 2.7, depend on py-1.4.29holger krekel
2015-05-07make default depend on just published py/pluggy releasesholger krekel
2015-05-07use new pluggy api (now at 0.3.0) for adding hookcall monitoringholger krekel
and reraise real keyboard interrupts during inline pytest runs to allow for better stopping of the pytest tests. --HG-- branch : plug30
2015-05-06- make sure sub pytest runs use the same basetempholger krekel
- depend on pluggy < 0.3 --HG-- branch : pluggy1
2015-05-05- some more adaptation to most recent pluggy APIholger krekel
- avoid using pluggin underscore api - show pluggy version in header --HG-- branch : pluggy1
2015-04-29adapt pytest to using pluggy (current master)holger krekel
--HG-- branch : pluggy1
2015-04-17change test module importing behaviour to append to sys.pathholger krekel
instead of prepending. This better allows to run test modules against installated versions of a package even if the package under test has the same import root. In this example:: testing/__init__.py testing/test_pkg_under_test.py pkg_under_test/ the tests will preferrably run against the installed version of pkg_under_test whereas before they would always pick up the local version. --HG-- branch : prefer_installed
2015-04-12Do imports at the head of the fileFloris Bruynooghe
--HG-- branch : pytest-2.7
2015-04-10Rename function and add nice docstring.Ionel Cristian Maries
--HG-- branch : pytest-2.7
2015-04-10Make argpase a dependency for python 3.0 and 3.1 too.Ionel Cristian Maries
--HG-- branch : pytest-2.7
2015-04-10Test for setuptools 0.7.2, turns out there's no 0.7 release on pypi.Ionel Cristian Maries
--HG-- branch : pytest-2.7
2015-04-10Improve version test (use pkg_resources to compare versions). Also log ↵Ionel Cristian Maries
failures to stderr. --HG-- branch : pytest-2.7
2015-04-10Add support for building proper wheels (universal and proper dependency ↵Ionel Cristian Maries
evnironment markers for argparse/colorama if setuptools is new-ish). --HG-- branch : pytest-2.7
2015-04-02- avoid setting of versions and targets in conf.py and Makefileholger krekel
as discussed on pytest-dev - "make help" now prints pytest specific information. - add a "_getdoctarget.py" helper - make ``setup.py`` read the version from ``_pytest/__init__.py`` --HG-- branch : release-checklist
2015-03-26bump versions to dev, including changing the doc-install target to "dev"holger krekel
instead of "latest"
2015-03-26bump verrsion to python2.7, fix a too precise test for windows, regen docsholger krekel
2015-03-01allow to override parametrized fixtures with non-parametrized ones and vice ↵Anatoly Bubenkov
versa --HG-- branch : parametrized-fixture-override
2014-10-26bump version to 2.7 on defaultholger krekel
2014-09-24bump version to 2.6.4.devholger krekel
2014-09-24regen and fix some docs (tox -e regen)holger krekel
bump versions, depend on already released py-1.4.25
2014-09-15fix conftest related fixture visibility issue: when running with aholger krekel
CWD outside a test package pytest would get fixture discovery wrong. Thanks to Wolfgang Schnerring for figuring out a reproducable example. --HG-- branch : conftest-nodeid
2014-09-14fix issue589: fix bad interaction with numpy and others when showingholger krekel
exceptions. check for precise "maximum recursion depth exceed" exception instead of presuming any RuntimeError is that one (implemented in py dep) Thanks Charles Cloud for analysing the issue.
2014-09-05fix issue582: fix setuptools example, thanks Laszlo Papp and Ronnyholger krekel
Pfannschmidt.
2014-09-05prepare 2.6.2, release announcement, also add HOWTORELEASE.rstholger krekel
2014-08-14Depend on newer version of pyFloris Bruynooghe
This fixes issue560, a test for which is included here as well.
2014-08-08fix issue561 example adapted to python3.holger krekel
2014-08-07finalize pytest-2.6.1 release, regen docsholger krekel
2014-08-07fix issue555: just add "errors" attribute to internal Capture stream.holger krekel
2014-08-01put some imports back to function-level and streamline py2/py3 compat in one ↵holger krekel
place