We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 739ab85 commit 59e2a12Copy full SHA for 59e2a12
pyproject.toml
@@ -81,3 +81,4 @@ target-version = ["py310"]
81
[tool.isort]
82
profile = "black"
83
line_length = 110
84
+skip_glob = ["benchmarks/env/*"]
tests/hats/inspection/test_visualize_catalog.py
@@ -1,6 +1,7 @@
1
from unittest.mock import MagicMock
2
3
import astropy.units as u
4
+import matplotlib as mpl
5
import matplotlib.pyplot as plt
6
import numpy as np
7
import pytest
@@ -30,6 +31,7 @@
30
31
32
# pylint: disable=no-member
33
34
+mpl.use("Agg")
35
36
DEFAULT_CMAP_NAME = "viridis"
37
DEFAULT_FOV = (320 * u.deg, 160 * u.deg)
0 commit comments