File tree 6 files changed +10
-10
lines changed
6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: 2
3
3
defaults : &defaults
4
4
working_directory : ~/repo
5
5
docker :
6
- - image : iodide /pyodide-env:12
6
+ - image : pyodide /pyodide-env:13
7
7
environment :
8
8
- EMSDK_NUM_CORES : 4
9
9
EMCC_CORES : 4
@@ -161,7 +161,7 @@ jobs:
161
161
- run :
162
162
name : test
163
163
command : |
164
- tools/pytest_wrapper.py src packages/micropip/ -v -k chrome -n 3
164
+ tools/pytest_wrapper.py src packages/micropip/ -v -k chrome
165
165
166
166
test-packages-firefox :
167
167
<< : *defaults
Original file line number Diff line number Diff line change 18
18
# only check for unused imports, as the rest is done by black
19
19
args : [--select=F401]
20
20
- repo : https://github.com/pre-commit/mirrors-mypy
21
- rev : v0.782
21
+ rev : v0.812
22
22
hooks :
23
23
- id : mypy
24
24
args :
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apt-get update \
6
6
bzip2 ccache clang-format-6.0 cmake f2c g++ gfortran git make \
7
7
patch pkg-config swig unzip wget xz-utils \
8
8
# testing packages: libgconf-2-4 is necessary for running chromium
9
- libgconf-2-4 chromium \
9
+ libgconf-2-4 " chromium=89.*" \
10
10
&& rm -rf /var/lib/apt/lists/*
11
11
12
12
RUN pip3 --no-cache-dir install \
@@ -15,7 +15,7 @@ RUN pip3 --no-cache-dir install \
15
15
distlib \
16
16
flake8 \
17
17
hypothesis \
18
- mypy \
18
+ " mypy==0.812" \
19
19
pytest \
20
20
pytest-cov \
21
21
pytest-httpserver \
@@ -31,7 +31,7 @@ RUN wget -qO- https://ftp.mozilla.org/pub/firefox/releases/70.0.1/linux-x86_64/e
31
31
&& wget -qO- https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-linux64.tar.gz | tar zxC /usr/local/bin/
32
32
33
33
# Get recent version of chromedriver
34
- RUN wget --quiet https://chromedriver.storage.googleapis.com/2.41 /chromedriver_linux64.zip \
34
+ RUN wget --quiet https://chromedriver.storage.googleapis.com/89.0.4389.23 /chromedriver_linux64.zip \
35
35
&& unzip chromedriver_linux64.zip \
36
36
&& mv $PWD/chromedriver /usr/local/bin \
37
37
&& rm -f chromedriver_linux64.zip
Original file line number Diff line number Diff line change 1
1
ARG VERSION
2
2
3
- FROM iodide /pyodide-env:${VERSION}
3
+ FROM pyodide /pyodide-env:${VERSION}
4
4
5
5
USER root
6
6
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ function error() {
29
29
}
30
30
31
31
32
- PYODIDE_IMAGE_TAG=" 12 "
32
+ PYODIDE_IMAGE_TAG=" 13 "
33
33
PYODIDE_PREBUILT_IMAGE_TAG=" 0.17.0a2"
34
- DEFAULT_PYODIDE_DOCKER_IMAGE=" iodide /pyodide-env:${PYODIDE_IMAGE_TAG} "
34
+ DEFAULT_PYODIDE_DOCKER_IMAGE=" pyodide /pyodide-env:${PYODIDE_IMAGE_TAG} "
35
35
DEFAULT_PYODIDE_SYSTEM_PORT=" 8000"
36
36
DOCKER_COMMAND=" /bin/bash"
37
37
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ test__xxsubinterpreters
45
45
test_abc
46
46
test_abstract_numbers
47
47
test_aifc audioop
48
- test_argparse
48
+ test_argparse crash-chrome
49
49
test_array
50
50
test_asdl_parser
51
51
test_ast
You can’t perform that action at this time.
0 commit comments