diff --git a/flake.nix b/flake.nix index 1ff672c..5d62db1 100644 --- a/flake.nix +++ b/flake.nix @@ -94,9 +94,9 @@ ./ext/pg_net.nix ./ext/pg_hashids.nix ./ext/pgsodium.nix - ./ext/pg_graphql.nix + #./ext/pg_graphql.nix ./ext/pg_stat_monitor.nix - ./ext/pg_jsonschema.nix + #./ext/pg_jsonschema.nix ./ext/vault.nix ./ext/hypopg.nix ./ext/pg_tle.nix @@ -333,7 +333,8 @@ createdb -h localhost testing psql -h localhost -d testing -Xaf ${./tests/prime.sql} - pg_prove -h localhost -d testing ${sqlTests}/*.sql + shopt -s extglob + pg_prove -h localhost -d testing ${sqlTests}/!(*graphql*).sql pkill postgres mv logfile $out diff --git a/tests/prime.sql b/tests/prime.sql index ca62940..9b33218 100644 --- a/tests/prime.sql +++ b/tests/prime.sql @@ -16,7 +16,9 @@ CREATE EXTENSION IF NOT EXISTS pgroonga; CREATE EXTENSION IF NOT EXISTS wrappers; CREATE EXTENSION IF NOT EXISTS http; -CREATE EXTENSION IF NOT EXISTS pg_graphql; -CREATE EXTENSION IF NOT EXISTS pg_jsonschema; +/* + *CREATE EXTENSION IF NOT EXISTS pg_graphql; + *CREATE EXTENSION IF NOT EXISTS pg_jsonschema; + */ CREATE EXTENSION IF NOT EXISTS citus;