Skip to content

Commit

Permalink
github: use Python 3 for Autobahn tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gobwas committed Dec 8, 2020
1 parent da289b9 commit 2317cdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,5 @@ jobs:
- name: Autobahn
if: >-
startsWith(matrix.os,'ubuntu')
env:
CRYPTOGRAPHY_ALLOW_OPENSSL_102: yes
run: |
make test autobahn
8 changes: 4 additions & 4 deletions autobahn/docker/autobahn/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM alpine:3.7

RUN apk add --no-cache python python-dev gcc build-base musl-dev libffi-dev openssl-dev && \
python -m ensurepip && \
pip install --upgrade pip && \
pip install autobahntestsuite
RUN apk add --no-cache python3 python3-dev gcc build-base musl-dev libffi-dev openssl-dev && \
python3 -m ensurepip && \
pip3 install --upgrade pip && \
pip3 install autobahntestsuite

VOLUME /config
VOLUME /report
Expand Down

0 comments on commit 2317cdb

Please sign in to comment.