| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
| |
This reverts commit e7595fe14c5a36a090f702b08cfac60232cedc0d which broke the build
|
| |
|
|
|
|
|
| |
It should be much easier to maintain and use now.
* use - what httpretty requires to run
* test - what CI/Tox would use
* dev - what contributors should install
|
| |
|
|
|
|
|
|
|
|
|
| |
By default, setup.py will package README.rst. If the package is built
on a case-insensitive filesystem, this would mean that readme.rst would
be distributed as README.rst, resulting in file read errors when
attempting to install the resulting package on a system with a case-
sensitive filesystem. This corrects the issue by the simple expedient
of renaming the file.
Addresses #176.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch reorganizes the requirements to install only what's
necessary for using httpretty. This greatly reduces installation time
when being pulled in as a dependency for another project.
The dependencies needed for running the test suite were moved to
test-requirements.txt, and were commented to indicate what type of
testing dependency it it.
Requirements are read in using a refactored variant of
test_requirements().
The tox file and the travis yaml have been updated to reflect the
changes in the requirements files.
Finally, .travis.yaml has leveled up. It now supports running the test
suite using pypy and python 3.3, with the added benefit that a build
will still be marked as successful even if py3.3 and pypy fail.
|
| |
|
|
| |
We should be able to run tests and see licenses etc from sdist.
|
| |
|
|
|
|
|
| |
Whilst the tests dir is included in the sdist package the
tests/functional/fixtures files are not. Fix that.
Closes: #140
|
| |
|
|
|
|
|
|
| |
1c4727a adds the tests package to the installed packages. This means that when
you install the package you end up with a top level python package called
tests. This is not what we want; this commit fixes this error.
Closes: #139
|
| | |
|
| |
|