summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Dropped PYTHONPATH propagation in 'make check'Daniele Varrazzo2017-12-111-1/+1
| | | | | Psycopg doesn't have other dependencies outside the stdlib so what's there is probably just noise.
* Avoid installing tests to site-packagesJon Dufresne2017-12-101-3/+2
| | | | | | | | For library end users, there is no need to install tests alongside the package itself. This keeps the tests available for development without adding extra packages to user's site-packages directory. Reduces the size of the installed package. Avoids accidental execution of test code by an installed package.
* Fixed 'make sdist' to work with setuptoolsDaniele Varrazzo2016-03-101-7/+2
|
* Docs build process and docs cleaned upDaniele Varrazzo2015-04-281-2/+2
|
* Use virtualenv as build environment for the docsDaniele Varrazzo2014-08-241-25/+5
|
* Take the PYTHONPATH into account when building the docsDaniele Varrazzo2014-08-241-2/+2
|
* Stop distributing the compiled documentation with the sourceDaniele Varrazzo2013-04-071-2/+1
|
* Merge branch 'python2' into python3Daniele Varrazzo2011-01-021-3/+9
|\ | | | | | | | | | | Conflicts: NEWS-2.3 setup.py
| * Fixed Makefile dependencies of the test suite.Daniele Varrazzo2011-01-021-2/+7
| |
| * Fixed "building" of purelib files with make.Daniele Varrazzo2011-01-021-1/+2
| | | | | | | | | | | | | | | | | | | | Using build instead of build_py forced build_ext to run too, which may fail to run as the option PG_CONFIG is not passed (or, worse, we may end up building against the wrong pg_config). Also touching the target file as make seems considering the source file newer than the destination when the timestamp is the same (as it is because the file is usually just copied).
* | Merge branch 'python2' into python3Daniele Varrazzo2011-01-011-0/+5
|\ \ | |/ | | | | | | | | | | | | | | Conflicts: ChangeLog NEWS-2.3 lib/extensions.py psycopg/microprotocols.c setup.py
| * Added target to package the docs for PyPI documentation.Daniele Varrazzo2010-12-041-0/+5
| |
* | The tests are run from the external of the package.Daniele Varrazzo2010-12-211-3/+3
| | | | | | | | If __init__ is treated as a script, relative import fail.
* | 'make check' runs the test in the build directory.Daniele Varrazzo2010-12-211-1/+1
| | | | | | | | This way tests can be run win Py3 too, as the setup 2to3s them.
* | The Makefile can run with both Python 2 and 3.Daniele Varrazzo2010-12-121-1/+1
|/
* Removed runtests target; checks is the default for MakefilesFederico Di Gregorio2010-12-011-11/+2
|
* Removed default test database from MakefileFederico Di Gregorio2010-12-011-3/+1
| | | | | The default is already in test/__init__.py and the Makefile was overwriting the PSYCOPG2_TESTDB env variable.
* Test cleanup.Daniele Varrazzo2010-11-191-1/+1
| | | | | | Tests pass or fail gracefully on older PostgreSQL versions. If unittest2 is available, skip tests instead of printing warnings.
* Fixed dependencies of the sdist targetDaniele Varrazzo2010-11-151-2/+3
|
* The Makefile can receive the pg_config location.Daniele Varrazzo2010-11-141-3/+11
|
* Fixed dependencies to build the docs.Daniele Varrazzo2010-11-131-3/+3
|
* Fixed setuptools installation from scratch.Daniele Varrazzo2010-11-131-12/+14
|
* Added flesh to the Makefile.Daniele Varrazzo2010-11-131-5/+110
| | | | | Now it can be used to build, make the docs (including installing dependencies), run the tests, build the sdist.
* Try to install the hstore type in the test database.Daniele Varrazzo2010-11-051-0/+5
|
* * runtests.py: add a harness to run all the psycopg tests againstJames Henstridge2008-02-271-1/+1
| | | | the version built by distutils.
* Added 'make check' target, running all the available tests.Daniele Varrazzo2007-11-111-0/+15
Most of the updates have been provided by James Henstridge. Closes ticket #195.