Skip to content

Commit

Permalink
Merge pull request #143 from jacebrowning/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
jacebrowning committed May 28, 2023
2 parents aaafee4 + 1703bda commit b002400
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 104 deletions.
163 changes: 76 additions & 87 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions pyproject.toml
Expand Up @@ -56,7 +56,7 @@ splinter = "^0.19"
webdriver_manager = "^3.8.5"

# Persistence
datafiles = "^2.1"
datafiles = "^2.1.2"
gitman = "^3.3"
parse = "^1.14"

Expand All @@ -79,16 +79,16 @@ black = "^22.3"
isort = "^5.10"

# Linters
mypy = "^1.0"
mypy = "^1.3"
types-requests = "*"
pydocstyle = "*"
pylint = "~2.15"

# Testing
pytest = "^6.2.4"
pytest-cov = "*"
pytest-describe = "^2.0.1"
pytest-expecter = "^2.0"
pytest = "^7.3"
pytest-cov = "^4.1"
pytest-describe = "^2.1"
pytest-expecter = "^3.0"
pytest-mock = "^2.0"
pytest-vcr = "^1.0.2"
pytest-random = "*"
Expand Down
11 changes: 0 additions & 11 deletions tests/test_sites.py
Expand Up @@ -51,17 +51,6 @@ def test_unused_actions_are_removed_on_forced_cleanup(expect, browser):
expect(len(page.actions)) < previous_count


def test_multiple_indices_are_tried(expect, browser):
page = Page.at("https://www.mtggoldfish.com/metagame/standard#paper")
with suppress(AttributeError):
page.click_esper_midrange.locators = []
page.datafile.save()

page.click_esper_midrange()

expect(page.click_esper_midrange.sorted_locators[0].index) == 1


def test_links_are_opened_in_the_same_window(expect, browser):
page = Page.at("https://share.michiganelections.io/elections/41/precincts/1209/")
with suppress(AttributeError):
Expand Down

0 comments on commit b002400

Please sign in to comment.