File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,19 @@ def tzname(self, dt):
72
72
PYPY = platform .python_implementation () == "PyPy"
73
73
HAS_FOLD = getattr (pdt .datetime , "fold" , False )
74
74
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 )
75
88
76
89
xfail_date_bounds = pytest .mark .xfail (
77
90
sys .version_info < (3 , 6 ),
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ isolated_build = true
11
11
[testenv]
12
12
description = Run the unit tests under {basepython}
13
13
deps = -rrequirements-dev.txt
14
- commands = pytest {posargs}
14
+ commands = pytest -- capture =no {posargs}
You can’t perform that action at this time.
0 commit comments