Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
fix: Print test case name, add pylint, drop verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
robsavoye committed Mar 26, 2024
1 parent a795ada commit 9b6de78
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ tmtestdata:
-@ogr2ogr /tmp/tm.sql PG:'dbname=$(DB)' -sql "SELECT * FROM messages LIMIT 10"
-@grep "INSERT INTO" /tmp/tm.sql | sed -e s/'"public"."sql_statement"'/messages/ > tmmessages.sql

lint:
-@pylint test_*.py

import:
-for i in $(SQL); do \
echo "Importing $${i} into testdata"; \
Expand All @@ -59,6 +62,7 @@ import:

check:
for test in $(TESTS); do \
./$${test} -v; \
echo "Running test $${test}..."; \
./$${test} ; \
done
force:

0 comments on commit 9b6de78

Please sign in to comment.