diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2026-02-11 16:19:18 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2026-02-12 17:46:56 +0100 |
| commit | e346a2397b717caacfc03150361b1595bb250e27 (patch) | |
| tree | 76e041cae9a48470d8d8899216f9feb4e2ef9dc8 /Makefile.example | |
| parent | d03cf3dbfef808cda84b0f35c467e6d97829f6e5 (diff) | |
| download | Ishtar-e346a2397b717caacfc03150361b1595bb250e27.tar.bz2 Ishtar-e346a2397b717caacfc03150361b1595bb250e27.zip | |
🐛 CSV export: fix export of json field when a json field is used as search (refs #6602)
Diffstat (limited to 'Makefile.example')
| -rw-r--r-- | Makefile.example | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.example b/Makefile.example index 3db2ca477..ef6259b58 100644 --- a/Makefile.example +++ b/Makefile.example @@ -10,6 +10,7 @@ export PATH := $(HOME)/bin/geckodriver:$(PATH) project=example_project # list used apps apps="ishtar_common" "archaeological_operations" "archaeological_context_records" "archaeological_files" "archaeological_finds" "archaeological_warehouse" +apps_test="archaeological_context_records" "ishtar_common" "archaeological_operations" "archaeological_files" "archaeological_finds" "archaeological_warehouse" default_data='fr' version=`head -n 1 version.py | cut -d' ' -f2` branch_name=`git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/\1/"` @@ -143,10 +144,10 @@ build_gitlab: clean collectstatic makemessages ## specific build for gitlab cd $(project); $(PYTHON) ./manage.py migrate test_gitlab: clean collectstatic makemessages ## specific test for gitlab - cd $(project); $(PYTHON) manage.py test --exclude-tag no_ci --exclude-tag gis --exclude-tag ui --exclude-tag libreoffice $(apps) + cd $(project); $(PYTHON) manage.py test --exclude-tag no_ci --exclude-tag gis --exclude-tag ui --exclude-tag libreoffice $(apps_test) soft_test_gitlab: build_gitlab ## run test for gitlab - do not erase previous database - cd $(project); $(PYTHON) manage.py test --keep --exclude-tag no_ci --exclude-tag gis --exclude-tag ui --exclude-tag libreoffice $(apps) + cd $(project); $(PYTHON) manage.py test --keep --exclude-tag no_ci --exclude-tag gis --exclude-tag ui --exclude-tag libreoffice $(apps_test) run_libreoffice: ## run libreoffice daemon for testing purpose /usr/bin/libreoffice --headless --accept="socket,host=127.0.0.1,port=8101;urp;" --nodefault --nofirststartwizard --nolockcheck --nologo --norestore --invisible --pidfile=/var/run/libreoffice.pid |
