File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3232 python -m pip install --upgrade pip
3333 pip install pytest
3434 pip install pytest-cov
35- pip install code-cov
35+ pip install codecov
3636 pip install -e .
3737 - name : Test with pytest
3838 run : |
Original file line number Diff line number Diff line change 11from bayes_opt .bayesian_optimization import Observable
22from bayes_opt .observer import _Tracker
33from bayes_opt .event import Events
4+ import os
45
56
67EVENTS = ["a" , "b" , "c" ]
@@ -109,7 +110,8 @@ def max(self):
109110
110111 tracker ._time_metrics ()
111112 assert start_time == tracker ._start_time
112- assert previous_time < tracker ._previous_time
113+ if not 'win' in os .sys .platform :
114+ assert previous_time < tracker ._previous_time
113115
114116
115117if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments