We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
running pg_prove from a docker container as so
docker run -v $PWD/path/to/testdir:/t -e "PGPASSWORD=$PGPASSWORD" --network=host xenoterracide/pg_prove:latest \ pg_prove --host localhost --dbname mydb --username postgres --ext .sql --recurse --color /t
here's how this container is created https://github.com/xenoterracide/postgis-pgtap/blob/master/pgprove/Dockerfile
FROM alpine:latest RUN apk add --update-cache perl perl-utils perl-module-build perl-dbi perl-dbd-pg postgresql-client \ && rm -rf /var/cache/apk/* RUN cpan TAP::Parser::SourceHandler::pgTAP Term::ANSIColor && rm -r ~/.cpan CMD ['pg_prove', '--help']
but my output still isn't colorized. If needed I can provide a github actions test of this.
The text was updated successfully, but these errors were encountered:
Try setting TERM=xterm-256color in the container.
TERM=xterm-256color
Sorry, something went wrong.
does not appear to work
docker run -v $PWD/src/test/resources/pgtap/shared/script:/t \ -e "PGPASSWORD=$PGPASSWORD" \ -e "TERM=xterm-256color" \ --network=host xenoterracide/pg_prove:latest \ pg_prove --host localhost --dbname production --username postgres --ext .sql --recurse --color /t
maybe a duplicate of #23 hard to tell at this juncture
Does it work with the official Docker image?
No branches or pull requests
running pg_prove from a docker container as so
here's how this container is created https://github.com/xenoterracide/postgis-pgtap/blob/master/pgprove/Dockerfile
but my output still isn't colorized. If needed I can provide a github actions test of this.
The text was updated successfully, but these errors were encountered: