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 4caac9e commit c588b25Copy full SHA for c588b25
conftest.py
@@ -2,6 +2,7 @@
2
3
import os
4
from pathlib import Path
5
+import sys
6
7
from astropy.utils import minversion
8
import numpy as np
@@ -60,3 +61,9 @@ def tmp_cwd(tmp_path):
60
61
yield tmp_path
62
finally:
63
os.chdir(old_dir)
64
+
65
66
+def pytest_runtestloop(session):
67
+ if sys.platform == 'win32':
68
+ session.add_marker(pytest.mark.filterwarnings(
69
+ 'ignore:OverflowError converting to IntType in column:astropy.utils.exceptions.AstropyWarning'))
0 commit comments