Skip to content

Commit 57a03ad

Browse files
committed
TEMPORARY COMMIT add some print debugging
1 parent 7ab49c1 commit 57a03ad

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

examples/rustapi_module/tests/test_datetime.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,19 @@ def tzname(self, dt):
7272
PYPY = platform.python_implementation() == "PyPy"
7373
HAS_FOLD = getattr(pdt.datetime, "fold", False)
7474

75+
print("MAX_SECONDS", MAX_SECONDS)
76+
print("MIN_SECONDS", MIN_SECONDS)
77+
print("MAX_DAYS", MAX_DAYS)
78+
print("MIN_DAYS", MIN_DAYS)
79+
print("MAX_MICROSECONDS", MAX_MICROSECONDS)
80+
print("MIN_MICROSECONDS", MIN_MICROSECONDS)
81+
print("_pointer_size", _pointer_size)
82+
print("IS_32_BIT", IS_32_BIT)
83+
print("IS_WINDOWS", IS_WINDOWS)
84+
print("MIN_DATETIME", MIN_DATETIME)
85+
print("MAX_DATETIME", MAX_DATETIME)
86+
print("PYPY", PYPY)
87+
print("HAS_FOLD", HAS_FOLD)
7588

7689
xfail_date_bounds = pytest.mark.xfail(
7790
sys.version_info < (3, 6),

examples/rustapi_module/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ isolated_build = true
1111
[testenv]
1212
description = Run the unit tests under {basepython}
1313
deps = -rrequirements-dev.txt
14-
commands = pytest {posargs}
14+
commands = pytest --capture=no {posargs}

0 commit comments

Comments
 (0)