Skip to content

Commit

Permalink
Update tests (fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgick committed Aug 20, 2024
1 parent 6ed4718 commit 1693451
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion duck_chat/models/generate_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_html() -> str:
# Open a webpage duck.ai
driver.get("https://duckduckgo.com/?q=DuckDuckGo+AI+Chat&ia=chat&duckai=1")

html = driver.page_source
html: str = driver.page_source or ""

# Close browser
driver.quit()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ ignore_missing_imports = true
python_version = "3.11"
show_error_codes = true
strict = true
exclude = ['format.py', "tests/", "build/"]
exclude = ["tests/"]

0 comments on commit 1693451

Please sign in to comment.