summaryrefslogtreecommitdiff
path: root/tests/gis_tests/geogapp
AgeCommit message (Collapse)Author
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
Rewrapped long docstrings and block comments to 79 characters + newline using script from https://github.com/medmunds/autofix-w505.
2025-03-11Fixed #36177 -- Added a trailing newline to JSON serializer. (#19232)Tom Carrick
2024-01-26Applied Black's 2024 stable style.Mariusz Felisiak
https://github.com/psf/black/releases/tag/24.1.0
2023-02-07Fixed #33638 -- Fixed GIS lookups crash with geography fields on PostGIS.Jacob Walls
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-04-08Fixed #32575 -- Added support for SpatiaLite 5.Claude Paroz
2021-01-13Removed redundant database vendor helpers in gis_tests/utils.py.Tim Graham
2020-12-10Fixed #32178 -- Allowed database backends to skip tests and mark expected ↵Hasan Ramezani
failures. Co-authored-by: Tim Graham <timograham@gmail.com>
2020-11-09Renamed BaseSpatialOperations.geography to ↵Tim Graham
BaseSpatialFeatures.supports_geography.
2019-03-03Reverted "Fixed relative paths imports per isort 4.3.5."Mariusz Felisiak
This reverts commit 463fe11bc8b2d068e447c5df677e7a31c2af7e03 due to restore of relative paths sorting from isort < 4.3.5 in isort 4.3.10.
2019-02-25Fixed relative paths imports per isort 4.3.5.Mariusz Felisiak
2019-01-02Used 4 space hanging indent for dictionaries.Tim Graham
Thanks Mariusz Felisiak for auditing.
2017-10-06Fixed #28665 -- Change some database exceptions to NotImplementedError per ↵Simon Charette
PEP 249.
2017-09-11Fixed #28353 -- Fixed some GIS functions when queryset is evaluated more ↵Sergey Fedoseev
than once. Reverted test for refs #27603 in favor of using FuncTestMixin.
2017-06-26Fixed #27964 -- Made MySQL backend raise exception if spatial transformation ↵Sergey Fedoseev
is needed for query.
2017-05-04Made runtests.py run gis_tests only when using a GIS database backend.Tim Graham
This facilitates other changes like refs #28160.
2017-04-01Fixed #25605 -- Made GIS DB functions accept geometric expressions, not only ↵Sergey Fedoseev
values, in all positions.
2017-01-20Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham
These functions do nothing on Python 3.
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Removed GeoManager and GeoQuerySet per deprecation timeline.Tim Graham
2016-12-15Fixed #27497 -- Improved support of geodetic coordinates on SpatiaLite.Sergey Fedoseev
Area function, Distance function, and distance lookups now work with geodetic coordinates on SpatiaLite.
2016-11-15Refs #26753 -- Removed obsolete workarounds in GIS tests for lack of GDAL.Adam Chainz
Missed in f7a363ee1d2039824d95f35e54219e09c5af67b0.
2016-08-15Fixed #27014 -- Fixed annotations with database functions on PostGIS.Daniel Wiesmann
Thanks Sean Mc Allister for providing a test.
2016-06-18Fixed #26753 -- Made GDAL a required dependency for contrib.gisClaude Paroz
Thanks Tim Graham for the review.
2016-04-12Refs #17635 -- Tested the Cast function in a geography to geometry contextClaude Paroz
Thanks Tim Graham for the review.
2016-01-29Refs #26022 -- Used context manager version of assertRaises in tests.Hasan
2016-01-28Fixed #26147 -- Relaxed expected values in GIS tests to account for ↵Tim Graham
database/library differences.
2015-11-19Fixed #25438 -- Fixed assorted Oracle GIS test failures.Jani Tiainen
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-04-24Removed many HAS_GEOS conditional importsClaude Paroz
2015-04-22Deprecated legacy GeoManager/GeoQuerySet methodsClaude Paroz
2015-04-22Fixed #24214 -- Added GIS functions to replace geoqueryset's methodsClaude Paroz
Thanks Simon Charette and Tim Graham for the reviews.
2015-04-18Stopped conditional discovery of gis_tests appsClaude Paroz
Refs #23879.
2015-03-21Revert "Removed unneeded app_label definitions in gis_tests"Claude Paroz
This reverts commit e0cc36f615f70061e034f5ba3f4e75330f51d3ca. The problem is the following: * With non-gis backends, gis_tests sub apps are not discovered (see runtests.py) * Consequently, the app_label is inferred from the gis_tests AppConfig * Then models with same names in different sub apps conflict because of same model_name/app_label pair.
2015-03-21Removed unneeded app_label definitions in gis_testsClaude Paroz
2015-02-11Moved contrib.gis tests out of contrib.Tim Graham