We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a693d4 commit 1126cc2Copy full SHA for 1126cc2
.gitignore
@@ -13,3 +13,4 @@ pg_pathman--*.sql
13
tags
14
cscope*
15
Dockerfile
16
+testgres
Dockerfile.tmpl
@@ -14,6 +14,7 @@ RUN if [ "${CHECK_CODE}" = "cppcheck" ] ; then \
RUN if [ "${CHECK_CODE}" = "false" ] ; then \
echo 'http://dl-3.alpinelinux.org/alpine/edge/main' > /etc/apk/repositories; \
apk --no-cache add curl python3 gcc make musl-dev cmocka-dev;\
17
+ pip3 install virtualenv;\
18
fi
19
20
RUN mkdir -p /pg/data && \
run_tests.sh
@@ -36,6 +36,8 @@ elif [ "$CHECK_CODE" = "cppcheck" ]; then
36
37
38
# we need testgres for pathman tests
39
+virtualenv env
40
+source env/bin/activate
41
pip3 install testgres
42
pip3 freeze | grep testgres
43
0 commit comments