diff --git a/django_migration_linter/management/commands/lintmigrations.py b/django_migration_linter/management/commands/lintmigrations.py index 03490049..2a0ad074 100644 --- a/django_migration_linter/management/commands/lintmigrations.py +++ b/django_migration_linter/management/commands/lintmigrations.py @@ -71,10 +71,6 @@ def add_arguments(self, parser): help="ignore migrations that are in the specified django apps", ) - # args = parser.parse_args() - - # folder_name = args.django_folder[0] - def handle(self, *args, **options): settings_path = os.path.dirname( import_module(os.getenv("DJANGO_SETTINGS_MODULE")).__file__ diff --git a/tests/fixtures.py b/tests/fixtures.py index 2cc0f63d..92c4f98c 100644 --- a/tests/fixtures.py +++ b/tests/fixtures.py @@ -12,14 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import os - -_PROJ_TEST_DIR = os.path.join( - os.path.dirname(os.path.dirname(os.path.abspath(__file__))), - "tests/", - "test_project", -) - CREATE_TABLE_WITH_NOT_NULL_COLUMN = "app_create_table_with_not_null_column" ADD_NOT_NULL_COLUMN = "app_add_not_null_column" DROP_COLUMN = "app_drop_column"