File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -286,9 +286,9 @@ jobs:
286
286
run : curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
287
287
- name : install geckodriver
288
288
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
290
290
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
292
292
- uses : actions/setup-python@v2
293
293
with :
294
294
python-version : " 3.10"
Original file line number Diff line number Diff line change 1
1
# This is a python unittest class automatically populating with all tests
2
- # in the tests folder.
2
+ # in the snippets folder.
3
3
4
4
5
5
import sys
11
11
import contextlib
12
12
import enum
13
13
from pathlib import Path
14
- import shutil
15
14
16
15
17
16
class _TestType (enum .Enum ):
Original file line number Diff line number Diff line change 1
- import time
2
- import sys
3
-
4
1
import pytest
5
2
6
3
RUN_CODE_TEMPLATE = """
You can’t perform that action at this time.
0 commit comments