Skip to content

Commit

Permalink
Merge pull request #87 from astronomy-commons/issue/85/arguments
Browse files Browse the repository at this point in the history
Remove command line arguments.
  • Loading branch information
delucchi-cmu committed Jun 14, 2023
2 parents c2d0570 + 3130761 commit 24b0cb4
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 344 deletions.
7 changes: 0 additions & 7 deletions docs/guide/command_line.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/guide/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ Installation
Other Topics
-------------------------------------------------------------------------------

* :doc:`command_line`
* :doc:`resume`
1 change: 0 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Utility for ingesting large survey data into HiPSCat structure.
:caption: Importing Catalogs

guide/overview
guide/command_line
guide/resume
Notebooks <notebooks>

Expand Down
1 change: 0 additions & 1 deletion src/hipscat_import/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
"""All modules for hipscat-import package"""

from .control import main
from .runtime_arguments import RuntimeArguments
7 changes: 0 additions & 7 deletions src/hipscat_import/__main__.py

This file was deleted.

1 change: 0 additions & 1 deletion src/hipscat_import/catalog/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""All modules for importing new catalogs."""

from .arguments import ImportArguments
from .command_line_arguments import parse_command_line
from .file_readers import (CsvReader, FitsReader, InputReader, ParquetReader,
get_file_reader)
from .map_reduce import map_to_pixels, reduce_pixel_shards, split_pixels
Expand Down
246 changes: 0 additions & 246 deletions src/hipscat_import/catalog/command_line_arguments.py

This file was deleted.

10 changes: 0 additions & 10 deletions src/hipscat_import/control.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tests of argument validation, in the absense of command line parsing"""
"""Tests of argument validation"""


import pytest
Expand Down
5 changes: 3 additions & 2 deletions tests/hipscat_import/catalog/test_argument_validation.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
"""Tests of argument validation, in the absense of command line parsing"""
"""Tests of argument validation"""


import pytest

from hipscat_import.catalog.arguments import ImportArguments, check_healpix_order_range
from hipscat_import.catalog.arguments import (ImportArguments,
check_healpix_order_range)

# pylint: disable=protected-access

Expand Down
65 changes: 0 additions & 65 deletions tests/hipscat_import/catalog/test_arguments_commandline.py

This file was deleted.

2 changes: 1 addition & 1 deletion tests/hipscat_import/index/test_index_argument.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tests of argument validation, in the absense of command line parsing"""
"""Tests of argument validation"""


import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/hipscat_import/test_runtime_arguments.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tests of argument validation, in the absense of command line parsing"""
"""Tests of argument validation"""


import os
Expand Down

0 comments on commit 24b0cb4

Please sign in to comment.