@@ -10,18 +10,15 @@ jobs:
10
10
- uses : actions/checkout@v4
11
11
- uses : astral-sh/setup-uv@v5
12
12
- run : uv run ruff format
13
- - run : uv run pre-commit run check-toml --all-files
14
- - run : uv run pre-commit run check-yaml --all-files
15
- - run : uv run pre-commit run check-json --all-files
16
- - run : uv run pre-commit run end-of-file-fixer --all-files
17
- - run : uv run pre-commit run check-merge-conflict --all-files
18
- - run : uv run pre-commit run check-illegal-windows-names --all-files
19
- - run : uv run pre-commit run check-case-conflict --all-files
20
- - run : uv run pre-commit run check-added-large-files --all-files
21
- - run : uv run pre-commit run check-shebang-scripts-are-executable --all-files
22
- - run : uv run pre-commit run check-symlinks --all-files
23
- - run : uv run pre-commit run destroyed-symlinks --all-files
24
- - run : uv run pre-commit run detect-private-key --all-files
25
- - run : uv run pre-commit run mixed-line-ending --all-files
26
- - run : uv run pre-commit run fix-byte-order-marker --all-files
27
- # - run: uv run pytest tests/conftest.py
13
+ - run : uv run pre-commit run --all-files
14
+ # TODO: Fix the ignored pytests.
15
+ # openai.OpenAIError: The api_key client option must be set either by passing
16
+ # api_key to the client or by setting the OPENAI_API_KEY environment variable
17
+ - run : uv run --with=dotenv pytest
18
+ --ignore=tests/test_dropdown_error.py
19
+ --ignore=tests/test_gif_path.py
20
+ --ignore=tests/test_models.py
21
+ --ignore=tests/test_react_dropdown.py
22
+ --ignore=tests/test_save_conversation.py
23
+ --ignore=tests/test_vision.py
24
+ --ignore=tests/test_wait_for_element.py
0 commit comments