Skip to content

Update geckodriver and trivial test fix #3582

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,9 @@ jobs:
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: install geckodriver
run: |
wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux32.tar.gz
wget https://github.com/mozilla/geckodriver/releases/download/v0.30.0/geckodriver-v0.30.0-linux64.tar.gz
mkdir geckodriver
tar -xzf geckodriver-v0.24.0-linux32.tar.gz -C geckodriver
tar -xzf geckodriver-v0.30.0-linux64.tar.gz -C geckodriver
- uses: actions/setup-python@v2
with:
python-version: "3.10"
Expand Down
3 changes: 1 addition & 2 deletions extra_tests/test_snippets.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This is a python unittest class automatically populating with all tests
# in the tests folder.
# in the snippets folder.


import sys
Expand All @@ -11,7 +11,6 @@
import contextlib
import enum
from pathlib import Path
import shutil


class _TestType(enum.Enum):
Expand Down
3 changes: 0 additions & 3 deletions wasm/tests/test_demo.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import time
import sys

import pytest

RUN_CODE_TEMPLATE = """
Expand Down