We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26395b9 commit a39281fCopy full SHA for a39281f
appveyor.yml
@@ -15,6 +15,7 @@ environment:
15
# See: http://stackoverflow.com/a/13751649/163740
16
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\run_with_env.cmd"
17
clone_folder: C:\projects\pandas
18
+ PANDAS_TESTING_MODE: "deprecate"
19
20
matrix:
21
pandas/util/testing.py
@@ -60,7 +60,7 @@ def set_testing_mode():
60
# set the testing mode filters
61
testing_mode = os.environ.get('PANDAS_TESTING_MODE', 'None')
62
if 'deprecate' in testing_mode:
63
- warnings.simplefilter('always', _testing_mode_warnings)
+ warnings.simplefilter('error', _testing_mode_warnings)
64
65
66
def reset_testing_mode():
0 commit comments