File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 5959 @echo " 🔍 Linting code..."
6060 $(PYTHON ) ruff check .
6161
62+ lint-fix :
63+ @echo " 🔍 Linting code..."
64+ $(PYTHON ) ruff check . --fix
65+
6266format :
6367 @echo " ✨ Formatting code..."
6468 $(PYTHON ) ruff format .
Original file line number Diff line number Diff line change @@ -182,7 +182,10 @@ def test_to_manifest_calls_schema_api(self):
182182 mock_client .schema .get_output_schema .assert_called_once_with (query , is_sql_dataset = True )
183183
184184 def test_to_manifest_matches_expected_format (self ):
185- """Test that to_manifest generates a manifest matching tests/config/manifests/register_test_dataset__1_0_0.json"""
185+ """
186+ Test that to_manifest generates a manifest matching reference manifest at
187+ tests/config/manifests/register_test_dataset__1_0_0.json
188+ """
186189 # Load the expected manifest
187190 manifest_path = Path (__file__ ).parent .parent / 'config' / 'manifests' / 'register_test_dataset__1_0_0.json'
188191 with open (manifest_path ) as f :
You can’t perform that action at this time.
0 commit comments