Skip to content

Commit

Permalink
comment out test print clutter
Browse files Browse the repository at this point in the history
  • Loading branch information
emirkmo committed Feb 8, 2023
1 parent a3da47f commit afe9140
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_catalogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_query_simbad():
assert isinstance(results, Table)
assert isinstance(simbad, SkyCoord)
assert len(results) > 0
results.pprint_all(50)
#results.pprint_all(50)


def test_query_skymapper():
Expand All @@ -38,11 +38,11 @@ def test_query_skymapper():
assert isinstance(results, Table)
assert isinstance(skymapper, SkyCoord)
assert len(results) > 0
results.pprint_all(50)
#results.pprint_all(50)


def test_download_catalog(caplog, SETUP_CONFIG, ra: float = 256.727512, dec: float = 30.271482) -> None:
caplog.set_level(logging.DEBUG)
def test_download_catalog(SETUP_CONFIG, ra: float = 256.727512, dec: float = 30.271482) -> None:
# caplog.set_level(logging.DEBUG)
# Check if CasJobs have been configured, and skip the entire test if it isn't.
# This has to be done like this, to avoid problems when config.ini doesn't exist.
try:
Expand Down

0 comments on commit afe9140

Please sign in to comment.