You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sed 's/TEST_ENVIRONMENT = TRUE/TEST_ENVIRONMENT = FALSE/g' ${QIITA_CONFIG_FP}.bk > $QIITA_CONFIG_FP;
220
218
qiita-env make --no-load-ontologies;
221
219
222
-
echo "######################"
223
-
echo "###### postgres ######"
224
-
echo "######################"
225
-
pgport=${{ job.services.postgres.ports[5432] }}
226
220
export PGPASSWORD=postgres
221
+
pgport=${{ job.services.postgres.ports[5432] }}
227
222
row_counts=`psql -h localhost -U postgres -d qiita_test -p $pgport -c "SELECT SUM(c.reltuples) FROM pg_class c JOIN pg_namespace n on n.oid = c.relnamespace WHERE n.nspname = 'qiita' AND c.relkind = 'r' AND n.nspname NOT IN ('information_schema', 'pg_catalog');"`
0 commit comments