Changes between Initial Version and Version 1 of Ticket #37091, comment 4


Ignore:
Timestamp:
May 8, 2026, 2:53:22 PM (5 days ago)
Author:
Milad Zarour

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #37091, comment 4

    initial v1  
    44
    55Tests:
    6 python -m black --check django/contrib/gis/gdal/libgdal.py
    7 python -m flake8 django/contrib/gis/gdal/libgdal.py
    8 git diff --check
    9 python tests/runtests.py gis_tests.gdal_tests
    10 Aborted locally because no GIS database backend is configured.
     6- `python -m black --check django/contrib/gis/gdal/libgdal.py`
     7- `python -m flake8 django/contrib/gis/gdal/libgdal.py`
     8- `git diff --check`
     9- Verified the targeted GDAL test package against GDAL 3.13.0 in a disposable Docker environment:
     10  - `docker run --rm -v d:/Repos/django:/src -w /src -e PYTHONPATH=/src:/src/tests -e DJANGO_SETTINGS_MODULE=test_sqlite ghcr.io/osgeo/gdal:ubuntu-small-3.13.0 bash -lc "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq && apt-get install -y -qq python3-pip >/dev/null && python3 -m pip install --quiet --break-system-packages --root-user-action=ignore asgiref\>=3.9.1 sqlparse\>=0.5.0 && gdalinfo --version && python3 -m unittest discover -s tests/gis_tests/gdal_tests -t . -v"`
     11  - Result: `GDAL 3.13.0 "Iowa City", released 2026/05/04`
     12  - Result: `Ran 144 tests in 1.085s - OK`
Back to Top