We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 192d78f commit e100699Copy full SHA for e100699
test/run-tests.sh
@@ -87,6 +87,16 @@ GEN_HTML=0
87
RUN_JOBS=
88
unset RUN_UNITTEST_PAT
89
unset RUN_BLACKBOX_PAT
90
+export PYTHONDEVMODE=1
91
+export PYTHONASYNCIODEBUG=1
92
+export PYTHONWARNINGS=error
93
+if [[ $(python3 --version) = "Python 3.9.7" ]] ; then
94
+ # Stupid workaround for https://bugs.python.org/issue45097
95
+ # Just ignore all deprecation warnings. To add insult to injury we
96
+ # can't just ignore anything caused by asyncio because the full pacakge
97
+ # name must be given in PYTHONWARNINGS.
98
+ PYTHONWARNINGS+=",ignore::DeprecationWarning"
99
+fi
100
101
# check if python coverage is installed
102
if type -fp coverage3 >/dev/null; then
0 commit comments