File tree Expand file tree Collapse file tree 2 files changed +2
-36
lines changed
Expand file tree Collapse file tree 2 files changed +2
-36
lines changed Original file line number Diff line number Diff line change @@ -228,41 +228,6 @@ jobs:
228228 name : smoke-test-results
229229 path : junit-smoke.xml
230230
231- lint-and-format :
232- name : Linting and Formatting
233- runs-on : ubuntu-latest
234-
235- steps :
236- - uses : actions/checkout@v4
237-
238- - name : Set up Python 3.11
239- uses : actions/setup-python@v4
240- with :
241- python-version : " 3.11"
242-
243- - name : Install dependencies
244- run : |
245- python -m pip install --upgrade pip
246- pip install -e ".[dev]"
247- # Install temporary Google GenAI wheel
248- pip install temp/google_genai-1.14.0-py3-none-any.whl
249-
250- - name : Run ruff linting
251- run : |
252- ruff check stagehand/ --output-format=github
253-
254- - name : Run ruff formatting check
255- run : |
256- ruff format --check stagehand/
257-
258- - name : Run mypy type checking
259- run : |
260- mypy stagehand/ --ignore-missing-imports
261-
262- - name : Check import sorting
263- run : |
264- isort --check-only stagehand/ tests/
265-
266231 coverage-report :
267232 name : Coverage Report
268233 runs-on : ubuntu-latest
@@ -309,7 +274,7 @@ jobs:
309274 test-summary :
310275 name : Test Summary
311276 runs-on : ubuntu-latest
312- needs : [test-unit, test-integration, smoke-tests, lint-and-format ]
277+ needs : [test-unit, test-integration, smoke-tests]
313278 if : always()
314279
315280 steps :
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ dev = [
4040 " isort>=5.12.0" ,
4141 " mypy>=1.3.0" ,
4242 " ruff" ,
43+ " psutil>=5.9.0" ,
4344]
4445
4546[project .urls ]
You can’t perform that action at this time.
0 commit comments