From 154f512dc6f19551c889183b4d60e90b1fa6c837 Mon Sep 17 00:00:00 2001 From: amandine-sahl Date: Mon, 30 Dec 2024 12:03:00 +0100 Subject: [PATCH] Test error --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index ee190fc..3aa975c 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -108,4 +108,4 @@ jobs: for protocole in ./*/; do echo install ${protocole}; geonature monitorings install $protocole > install.log; done # Test sql echo "Test process_sql modules" - for protocole in ./*/; do echo process_sql ${protocole}; geonature monitorings process_sql $protocole |grep -i error && echo "error" exit 1 || echo "OK" ; done + for protocole in ./*/; do echo process_sql ${protocole}; geonature monitorings process_sql $protocole |grep -i error && exit 1 || echo "OK" ; done