fixed typo in alpine docker creation as well as turn warnings back on in browser tests

This commit is contained in:
Stephen Gaito 2020-06-22 22:53:45 +01:00
parent e45dfe95a0
commit 4d95701ffa
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ cat > Dockerfile <<DOCKERFILE_HERE_DOC
FROM $DOCKER_FROM
COPY ./$ALPINE_NAME.* /root && \
chmod a+x /root/$APLINE_NAME.install
chmod a+x /root/$ALPINE_NAME.install
RUN /root/$ALPINE_NAME.install

View File

@ -46,4 +46,4 @@ if __name__ == '__main__':
# turn warnings OFF to prevent 'ResourceWarning: unclosed <socket.socket'
# see: https://stackoverflow.com/a/21500796
#
unittest.main(warnings='ignore')
unittest.main()