From d099b3fdafe4874ecb0f31254e1ab3f044aa921e Mon Sep 17 00:00:00 2001 From: Brad Macdonald Date: Thu, 16 Nov 2023 09:30:54 -0700 Subject: [PATCH] move print statements for debugging --- src/agoradatatools/gx.py | 5 +++++ tests/test_gx.py | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/agoradatatools/gx.py b/src/agoradatatools/gx.py index 77a87a74..a66f3ad4 100644 --- a/src/agoradatatools/gx.py +++ b/src/agoradatatools/gx.py @@ -24,6 +24,11 @@ def __init__( self.expectation_suite_name = dataset_name self.upload_folder = upload_folder self.gx_project_dir = self._get_data_context_location() + + print("-------------------------------------") + print(self.good_runner.gx_project_dir) + print("-------------------------------------") + self.context = gx.get_context(project_root_dir=self.gx_project_dir) self.validations_path = ( self.gx_project_dir + "/gx/uncommitted/data_docs/local_site/validations" diff --git a/tests/test_gx.py b/tests/test_gx.py index 5bfb1170..c01fc5fe 100644 --- a/tests/test_gx.py +++ b/tests/test_gx.py @@ -31,10 +31,6 @@ def setup_method(self, syn): ) def test_that_an_initialized_runner_has_the_attributes_it_should(self, syn): - print("-------------------------------------") - print(self.good_runner.gx_project_dir) - print("-------------------------------------") - assert ( self.good_runner.gx_project_dir == self.good_runner._get_data_context_location()