Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoknjas committed Apr 23, 2024
1 parent bf13d5a commit 6e2b8bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
Expand Down
2 changes: 1 addition & 1 deletion tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def test_future_annotations(self):
first_code_line = next(
(line.rstrip('\n') for line in file.readlines() if is_code_line(line)), None
)
if filename in (r"hypickle/__init__.py", r"hypickle\__init__.py"):
if filename in (r"hypickle\__init__.py"):
assert first_code_line is None
else:
assert first_code_line == "from __future__ import annotations"
Expand Down

0 comments on commit 6e2b8bd

Please sign in to comment.