Skip to content

Commit 11eb38e

Browse files
committed
Disabled building docs in Windows
1 parent 5436958 commit 11eb38e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ def __init__(self):
193193

194194
def get_mem_addr(obj):
195195
if sys.platform == "win32" and platform.python_implementation() != "PyPy":
196-
return f"0x0*{hex(id(no_repr_instance))[2:].upper()}"
196+
return f"0x0*{hex(id(obj))[2:].upper()}"
197197
else:
198-
return f"0x0*{hex(id(no_repr_instance))[2:]}"
198+
return f"0x0*{hex(id(obj))[2:]}"
199199

200200

201201
@pytest.mark.parametrize(

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ python =
1818

1919
[gh-actions]
2020
python =
21-
3.6: py36, docs, mypy
21+
3.6: py36
2222
3.7: py37
2323
3.8: py38
2424
pypy3: pypy3

0 commit comments

Comments
 (0)