Skip to content

Commit

Permalink
do not rely on the runner.yaml symlink in the test
Browse files Browse the repository at this point in the history
The symlink is not registered in pants. So far, this is the first
time something has tried to access that file. So, just use the actual
file instead of the symlink
  • Loading branch information
cognifloyd committed Oct 8, 2024
1 parent 4d69f8a commit 5b95d76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def setUpClass(cls):
assert_submodules_are_checked_out()

def test_adherence_to_output_schema(self):
config = self.loader(os.path.join(BASE_DIR, "../../runner.yaml"))
config = self.loader(os.path.join(BASE_DIR, "../../python_runner/runner.yaml"))
runner = self._get_mock_runner_obj()
runner.entry_point = PASCAL_ROW_ACTION_PATH
runner.pre_run()
Expand Down

0 comments on commit 5b95d76

Please sign in to comment.