Skip to content

Commit bc304ab

Browse files
authored
Merge pull request RustPython#3582 from deantvv/triviality
Update geckodriver and trivial test fix
2 parents 345a4f9 + c5544c2 commit bc304ab

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,9 @@ jobs:
286286
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
287287
- name: install geckodriver
288288
run: |
289-
wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux32.tar.gz
289+
wget https://github.com/mozilla/geckodriver/releases/download/v0.30.0/geckodriver-v0.30.0-linux64.tar.gz
290290
mkdir geckodriver
291-
tar -xzf geckodriver-v0.24.0-linux32.tar.gz -C geckodriver
291+
tar -xzf geckodriver-v0.30.0-linux64.tar.gz -C geckodriver
292292
- uses: actions/setup-python@v2
293293
with:
294294
python-version: "3.10"

extra_tests/test_snippets.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This is a python unittest class automatically populating with all tests
2-
# in the tests folder.
2+
# in the snippets folder.
33

44

55
import sys
@@ -11,7 +11,6 @@
1111
import contextlib
1212
import enum
1313
from pathlib import Path
14-
import shutil
1514

1615

1716
class _TestType(enum.Enum):

wasm/tests/test_demo.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import time
2-
import sys
3-
41
import pytest
52

63
RUN_CODE_TEMPLATE = """

0 commit comments

Comments
 (0)