Skip to content

Commit

Permalink
fix/ci: do not assert overflow for unsigned long
Browse files Browse the repository at this point in the history
  • Loading branch information
winstxnhdw committed Jul 2, 2024
1 parent 8478728 commit 652b528
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v5.1.0
with:
python-version: 3.11
python-version: '*'
cache: pip

- name: Install the development dependencies
Expand All @@ -32,12 +32,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v5.1.0
with:
python-version: 3.11
python-version: '*'
cache: pip

- name: Install the development dependencies
Expand All @@ -51,12 +51,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v5.1.0
with:
python-version: 3.11
python-version: '*'
cache: pip

- name: Install the development dependencies
Expand Down
2 changes: 0 additions & 2 deletions tests/test_keywin.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,5 @@ def test_mouse_helpers():
assert move_relative(0, 0)
assert not move(0xFFFFFFFFFFFFFFFFF, 0xFFFFFFFFFFFFFFFFF)
assert not move_relative(0xFFFFFFFFFFFFFFFFF, 0xFFFFFFFFFFFFFFFFF)
assert not scroll(0xFFFFFFFFFFFFFFFFF)
assert not scroll_horizontal(0xFFFFFFFFFFFFFFFFF)
assert not scroll(-1)
assert not scroll_horizontal(-1)

0 comments on commit 652b528

Please sign in to comment.